From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 30 13:30:06 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63FB916A4C1 for ; Sat, 30 Aug 2003 13:30:06 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E05A43FF2 for ; Sat, 30 Aug 2003 13:30:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h7UKU5Up055370 for ; Sat, 30 Aug 2003 13:30:05 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h7UKU5xO055369; Sat, 30 Aug 2003 13:30:05 -0700 (PDT) Date: Sat, 30 Aug 2003 13:30:05 -0700 (PDT) Message-Id: <200308302030.h7UKU5xO055369@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Garrett Wollman Subject: Re: misc/56206: src/sys/sys/cdefs.h uses PreProcessor variables that aren't defined, causing noisy warnings. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Garrett Wollman List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Aug 2003 20:30:06 -0000 The following reply was made to PR misc/56206; it has been noted by GNATS. From: Garrett Wollman To: Larry Rosenman Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: misc/56206: src/sys/sys/cdefs.h uses PreProcessor variables that aren't defined, causing noisy warnings. Date: Sat, 30 Aug 2003 16:26:52 -0400 (EDT) >>> -#if __STDC_VERSION__ < 199901 >>> +#if defined(__STDC_VERSION__) && __STDC_VERSION__ < 199901 >> >> 0 < 199901 > and doesn't the #if __STDC_VERSION__ < 199901 have the same effect, except Let me try to spell this out. When __STDC_VERSION__ is not defined, the preprocessor expression `__STDC_VERSION < 199901' evaluates, by definition, to true, because 0L < 199901L (which is why I consider this GCC warning to be bogus). When __STDC_VERSION__ is not defined, the preprocessor expression `defined(__STDC_VERSION__) && __STDC_VERSION__ < 199901' evaluates to false, because __STDC_VERSION__ is not defined. -GAWollman