This is the mail archive of the newlib@sourceware.cygnus.com mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

minor fix for include/locale.h




NULL is defined as a simple 0 in all places in include except locale.h:


diff -uNr
/usr1/rtems/work/original/newlib-1.8.2/newlib/libc/include/locale.h
newlib-1.8.2/newlib/libc/include/locale.h
--- /usr1/rtems/work/original/newlib-1.8.2/newlib/libc/include/locale.h
Wed May 11 11:26:04 1994
+++ newlib-1.8.2/newlib/libc/include/locale.h   Tue Dec 14 13:36:20 1999
@@ -13,7 +13,7 @@
 #include "_ansi.h"

 #ifndef NULL
-#define NULL    0L
+#define NULL    0
 #endif

 #define LC_ALL     0



-- 
Joel Sherrill, Ph.D.             Director of Research & Development
joel@OARcorp.com                 On-Line Applications Research
Ask me about RTEMS: a free RTOS  Huntsville AL 35805
   Support Available             (256) 722-9985

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]