From owner-freebsd-hackers Wed May 3 00:24:17 1995 Return-Path: hackers-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id AAA04493 for hackers-outgoing; Wed, 3 May 1995 00:24:17 -0700 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id AAA04481 for ; Wed, 3 May 1995 00:24:04 -0700 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id RAA31389; Wed, 3 May 1995 17:17:33 +1000 Date: Wed, 3 May 1995 17:17:33 +1000 From: Bruce Evans Message-Id: <199505030717.RAA31389@godzilla.zeta.org.au> To: j@uriah.heep.sax.de, rpt@miles.sso.loral.com Subject: Re: GNU cpp bug with pthreads Cc: hackers@FreeBSD.org Sender: hackers-owner@FreeBSD.org Precedence: bulk >> #ifdef __STDC__ >Note: this should be ``#if __STDC__'' anyway. Some preprocessors do >define this macro to 0 when running in `traditional' mode. ANSI says >it is ``the constant 1'' in a standard-conforming environment. The FreeBSD headers (include and sys) consistently use `#ifdef __STDC__' It makes no difference in a standard conforming environment but `ifdef' may be more likely to DTRT for quasi-standard environments. Bruce