From b71b449d275e0087a58729d73faa8d04bf1be316 Mon Sep 17 00:00:00 2001 From: Alfred Perlstein Date: Sat, 11 May 2002 03:58:24 +0000 Subject: [PATCH] As a temporary bandaid disable '__printf0like' unconditionally, it doesn't seem to work under gcc 3.1 yet. We are now 'WERROR' safe again. --- sys/sys/cdefs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/cdefs.h b/sys/sys/cdefs.h index c98a094a6fb..59630d807f9 100644 --- a/sys/sys/cdefs.h +++ b/sys/sys/cdefs.h @@ -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