Date: Tue, 6 Apr 1999 11:17:32 -0400 Message-Id: <199904061517.LAA08863@envy.delorie.com> From: DJ Delorie To: djgpp-workers AT delorie DOT com In-reply-to: <199904061447.OAA59644@out1.ibm.net> (snowball3@usa.net) Subject: Re: locale.h patch References: <199904061447 DOT OAA59644 AT out1 DOT ibm DOT net> Reply-To: djgpp-workers AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > + /* Some programs think they know better... */ > + #undef NULL > #define NULL 0 Should we do that, or this? #ifndef NULL #define NULL 0 #endif Whose NULL definition are we trying to avoid?