implement proper logging

git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@179 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2004-09-05 00:03:16 +00:00
parent 57e473b61c
commit 6c4fd62040
50 changed files with 416 additions and 225 deletions

10
polyp/gcc-printf.h Normal file
View file

@ -0,0 +1,10 @@
#ifndef foogccprintfhfoo
#define foogccprintfhfoo
#ifdef __GNUC__
#define PA_GCC_PRINTF_ATTR(a,b) __attribute__ ((format (printf, a, b)))
#else
#define PA_GCC_PRINTF_ATTR(a,b)
#endif
#endif