summaryrefslogtreecommitdiffstats
path: root/polyp/gcc-printf.h
blob: 224552af813bf46983f22bef1d763a2b10f08663 (plain)
1
2
3
4
5
6
7
8
9
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