X-Authentication-Warning: delorie.com: mailnull set sender to djgpp-workers-bounces using -f Date: Thu, 28 Feb 2002 08:58:52 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: Charles Sandmann cc: djgpp-workers AT delorie DOT com Subject: Re: v2.03 refresh++ diffs [was bzero...] In-Reply-To: <10202280505.AA15790@clio.rice.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp-workers AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Wed, 27 Feb 2002, Charles Sandmann wrote: > + #if __GNUC__ >= 3 > + #define bzero(s, n) __builtin_bzero(s, n) > + #else > void * bzero(void *ptr, size_t _len); > + #endif Is the built-in used even when compiling without optimizations?