From 5ef7cc4cb6b064828f1cd8d54eb97891142f9da4 Mon Sep 17 00:00:00 2001 From: Sascha Schumann Date: Thu, 28 Aug 2003 05:23:08 +0000 Subject: Let GCC check format arguments --- main/php.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'main/php.h') 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 -- cgit v1.2.1