Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 30 Aug 2003 13:10:09 -0700 (PDT)
From:      Garrett Wollman <wollman@khavrinen.lcs.mit.edu>
To:        freebsd-bugs@FreeBSD.org
Subject:   misc/56206: src/sys/sys/cdefs.h uses PreProcessor variables that aren't defined, causing noisy warnings.
Message-ID:  <200308302010.h7UKA9Hh054592@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR misc/56206; it has been noted by GNATS.

From: Garrett Wollman <wollman@khavrinen.lcs.mit.edu>
To: Larry Rosenman <ler@lerctr.org>
Cc: FreeBSD-gnats-submit@freebsd.org
Subject: misc/56206: src/sys/sys/cdefs.h uses PreProcessor variables that
	aren't defined, causing noisy warnings.
Date: Sat, 30 Aug 2003 16:05:27 -0400 (EDT)

 <<On Sat, 30 Aug 2003 14:19:14 -0500 (CDT), Larry Rosenman <ler@lerctr.org> said:
 
 > The following patch shuts it up, and is functionally equivalent. 
 
 Actually, the patch is not functionally equivalent:
 
 > -#if __STDC_VERSION__ < 199901
 > +#if defined(__STDC_VERSION__) && __STDC_VERSION__ < 199901
 
 0 < 199901
 
 -GAWollman
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200308302010.h7UKA9Hh054592>