svn commit: trunk/uClibc/include

psm at uclibc.org psm at uclibc.org
Thu Jan 26 18:44:39 UTC 2006


Author: psm
Date: 2006-01-26 10:44:37 -0800 (Thu, 26 Jan 2006)
New Revision: 13617

Log:
Enable gcvt in header, we build it

Modified:
   trunk/uClibc/include/stdlib.h


Changeset:
Modified: trunk/uClibc/include/stdlib.h
===================================================================
--- trunk/uClibc/include/stdlib.h	2006-01-26 10:58:12 UTC (rev 13616)
+++ trunk/uClibc/include/stdlib.h	2006-01-26 18:44:37 UTC (rev 13617)
@@ -693,10 +693,11 @@
 #endif
 
 
-#if 0 /* defined __USE_SVID || defined __USE_XOPEN_EXTENDED */
+#if defined __USE_SVID || defined __USE_XOPEN_EXTENDED
 /* Convert floating point numbers to strings.  The returned values are
    valid only until another call to the same function.  */
 
+#if 0
 /* Convert VALUE to a string with NDIGIT digits and return a pointer to
    this.  Set *DECPT with the position of the decimal character and *SIGN
    with the sign of the number.  */
@@ -708,6 +709,7 @@
    the number.  */
 extern char *fcvt (double __value, int __ndigit, int *__restrict __decpt,
 		   int *__restrict __sign) __THROW __nonnull ((3, 4)) __wur;
+#endif
 
 /* If possible convert VALUE to a string with NDIGIT significant digits.
    Otherwise use exponential representation.  The resulting string will
@@ -716,7 +718,7 @@
      __THROW __nonnull ((3)) __wur;
 
 
-# ifdef __USE_MISC
+# if 0 /*def __USE_MISC*/
 /* Long double versions of above functions.  */
 extern char *qecvt (long double __value, int __ndigit,
 		    int *__restrict __decpt, int *__restrict __sign)




More information about the uClibc-cvs mailing list