From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 30 13:40:23 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 03D6616A4BF for ; Sat, 30 Aug 2003 13:40:23 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8313543FE3 for ; Sat, 30 Aug 2003 13:40:22 -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 h7UKeMUp055582 for ; Sat, 30 Aug 2003 13:40:22 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h7UKeMFF055581; Sat, 30 Aug 2003 13:40:22 -0700 (PDT) Date: Sat, 30 Aug 2003 13:40:22 -0700 (PDT) Message-Id: <200308302040.h7UKeMFF055581@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Larry Rosenman 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: Larry Rosenman List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Aug 2003 20:40:23 -0000 The following reply was made to PR misc/56206; it has been noted by GNATS. From: Larry Rosenman To: Garrett Wollman 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 15:33:56 -0500 --On Saturday, August 30, 2003 16:26:52 -0400 Garrett Wollman wrote: > >>>> -#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. aha. I think I agree with you on the Warning. Thanks for the explanation. LER -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 972-414-9812 E-Mail: ler@lerctr.org US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749