[uClibc-cvs] uClibc/include stdlib.h,1.33,1.34

Manuel Novoa III mjn3 at uclibc.org
Wed Jan 8 18:25:00 UTC 2003


Update of /var/cvs/uClibc/include
In directory winder:/tmp/cvs-serv8642

Modified Files:
	stdlib.h 
Log Message:
For now, "#if 0" out the inlining of (currently unsupported) glibc-specific
string->numeric conversion functions.


Index: stdlib.h
===================================================================
RCS file: /var/cvs/uClibc/include/stdlib.h,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -d -r1.33 -r1.34
--- stdlib.h	27 Nov 2002 23:02:15 -0000	1.33
+++ stdlib.h	8 Jan 2003 18:24:56 -0000	1.34
@@ -202,7 +202,7 @@
 
 
 #if 0
-/*#ifdef __USE_GNU*/
+#ifdef __USE_GNU
 /* The concept of one static locale per category is not very well
    thought out.  Many applications will need to process its data using
    information from several different locales.  Another application is
@@ -250,8 +250,10 @@
 				char **__restrict __endptr,
 				__locale_t __loc) __THROW;
 #endif /* GNU */
+#endif /* 0 */
 
 
+#if 0
 /* The internal entry points for `strtoX' take an extra flag argument
    saying whether or not to parse locale-dependent number grouping.  */
 
@@ -296,8 +298,10 @@
 #  define __strtoull_internal_defined	1
 # endif
 #endif /* GCC */
+#endif /* 0 */
 
 #ifdef __USE_EXTERN_INLINES
+#if 0
 /* Define inline functions which call the internal entry points.  */
 
 extern __inline double
@@ -360,6 +364,7 @@
   return __strtoull_internal (__nptr, __endptr, __base, 0);
 }
 # endif
+#endif /* 0 */
 
 extern __inline double
 atof (__const char *__nptr) __THROW




More information about the uClibc-cvs mailing list