diff options
Diffstat (limited to 'main/php.h')
-rw-r--r-- | main/php.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/main/php.h b/main/php.h index 86fff71683..67206f76f2 100644 --- a/main/php.h +++ b/main/php.h @@ -226,6 +226,12 @@ char *strerror(int); #define LONG_MIN (- LONG_MAX - 1) #endif +#ifdef __GNUC__ +# define PHP_ATTRIBUTE_FORMAT(type, idx, first) __attribute__ ((format(type, idx, first))) +#else +# define PHP_ATTRIBUTE_FORMAT(type, idx, first) +#endif + #if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF) || PHP_BROKEN_SPRINTF || PHP_BROKEN_SNPRINTF || PHP_BROKEN_VSNPRINTF #include "snprintf.h" #endif |