Return-Path: Delivered-To: apmail-new-httpd-archive@apache.org Received: (qmail 16559 invoked by uid 500); 28 Apr 2000 18:14:53 -0000 Mailing-List: contact new-httpd-help@apache.org; run by ezmlm Precedence: bulk X-No-Archive: yes Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list new-httpd@apache.org Received: (qmail 16548 invoked from network); 28 Apr 2000 18:14:52 -0000 Date: Fri, 28 Apr 2000 11:22:04 -0700 (PDT) From: Greg Stein To: new-httpd@apache.org Subject: Re: cvs commit: apache-2.0/src/os/win32/installer/installdll/test test.c In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Rating: locus.apache.org 1.6.2 0/1000/N On Fri, 28 Apr 2000, Doug MacEachern wrote: >... > > BTW, I'm also personally not convinced that own APR_{TRUE,FALSE} values > > are very useful. FALSE is _ALWAYS_ 0 and TRUE is just not FALSE. So it > > is usually never a problem to use > > > > #ifndef FALSE > > #define FALSE 0 > > #endif > > #ifndef TRUE > > #define TRUE !FALSE > > #endif > > yeah, this was my first suggestion, look like i might backup to that, > since APR_{TRUE,FALSE} is breaking things. I'm with Ralf on this one. And that should be: #define TRUE (!FALSE) Cheers, -g -- Greg Stein, http://www.lyra.org/