svn commit: trunk/uClibc/libc/stdlib

psm at uclibc.org psm at uclibc.org
Thu Dec 8 19:04:35 UTC 2005


Author: psm
Date: 2005-12-08 11:03:44 -0800 (Thu, 08 Dec 2005)
New Revision: 12753

Log:
Hide __strtofpmax, implement some hiddens

Modified:
   trunk/uClibc/libc/stdlib/strtod.c


Changeset:
Modified: trunk/uClibc/libc/stdlib/strtod.c
===================================================================
--- trunk/uClibc/libc/stdlib/strtod.c	2005-12-08 18:56:57 UTC (rev 12752)
+++ trunk/uClibc/libc/stdlib/strtod.c	2005-12-08 19:03:44 UTC (rev 12753)
@@ -206,14 +206,14 @@
 
 #if defined(__UCLIBC_HAS_XLOCALE__) && !defined(__UCLIBC_DO_XLOCALE)
 
-__fpmax_t __strtofpmax(const Wchar *str, Wchar **endptr, int exponent_power)
+__fpmax_t attribute_hidden __strtofpmax(const Wchar *str, Wchar **endptr, int exponent_power)
 {
 	return __strtofpmax_l(str, endptr, exponent_power, __UCLIBC_CURLOCALE);
 }
 
 #else  /* defined(__UCLIBC_HAS_XLOCALE__) && !defined(__UCLIBC_DO_XLOCALE) */
 
-__fpmax_t __XL_NPP(__strtofpmax)(const Wchar *str, Wchar **endptr, int exponent_power
+__fpmax_t attribute_hidden __XL_NPP(__strtofpmax)(const Wchar *str, Wchar **endptr, int exponent_power
 								 __LOCALE_PARAM )
 {
 	__fpmax_t number;
@@ -523,7 +523,7 @@
 #endif
 
 
-float __XL(strtof)(const Wchar *str, Wchar **endptr   __LOCALE_PARAM )
+float attribute_hidden __UCXL(strtof)(const Wchar *str, Wchar **endptr   __LOCALE_PARAM )
 {
 #if FPMAX_TYPE == 1
 	return __XL_NPP(__strtofpmax)(str, endptr, 0   __LOCALE_ARG );
@@ -540,7 +540,7 @@
 #endif
 }
 
-__XL_ALIAS(strtof)
+__UCXL_ALIAS(strtof)
 
 #endif
 #endif
@@ -560,7 +560,7 @@
 #define Wchar char
 #endif
 
-double __XL(strtod)(const Wchar *__restrict str,
+double attribute_hidden __UCXL(strtod)(const Wchar *__restrict str,
 					Wchar **__restrict endptr   __LOCALE_PARAM )
 {
 #if FPMAX_TYPE == 2
@@ -578,7 +578,7 @@
 #endif
 }
 
-__XL_ALIAS(strtod)
+__UCXL_ALIAS(strtod)
 
 #endif
 #endif
@@ -598,7 +598,7 @@
 #define Wchar char
 #endif
 
-long double __XL(strtold)(const Wchar *str, Wchar **endptr   __LOCALE_PARAM )
+long double attribute_hidden __UCXL(strtold)(const Wchar *str, Wchar **endptr   __LOCALE_PARAM )
 {
 #if FPMAX_TYPE == 3
 	return __XL_NPP(__strtofpmax)(str, endptr, 0   __LOCALE_ARG );
@@ -615,7 +615,7 @@
 #endif
 }
 
-__XL_ALIAS(strtold)
+__UCXL_ALIAS(strtold)
 
 #endif
 #endif




More information about the uClibc-cvs mailing list