1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-25 11:37:56 +00:00

As a temporary bandaid disable '__printf0like' unconditionally, it

doesn't seem to work under gcc 3.1 yet.

We are now 'WERROR' safe again.
This commit is contained in:
Alfred Perlstein 2002-05-11 03:58:24 +00:00
parent a74d1691fe
commit b71b449d27
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=96390

View File

@ -169,7 +169,7 @@
#endif
/* Compiler-dependent macros that rely on FreeBSD-specific extensions. */
#if __FreeBSD_cc_version >= 300001
#if 0 && __FreeBSD_cc_version >= 300001
#define __printf0like(fmtarg, firstvararg) \
__attribute__((__format__ (__printf0__, fmtarg, firstvararg)))
#else