svn commit: trunk/uClibc/libc/stdlib

psm at uclibc.org psm at uclibc.org
Sat Jan 14 01:06:43 UTC 2006


Author: psm
Date: 2006-01-13 17:06:42 -0800 (Fri, 13 Jan 2006)
New Revision: 13279

Log:
Correct atoi()

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


Changeset:
Modified: trunk/uClibc/libc/stdlib/stdlib.c
===================================================================
--- trunk/uClibc/libc/stdlib/stdlib.c	2006-01-14 01:00:21 UTC (rev 13278)
+++ trunk/uClibc/libc/stdlib/stdlib.c	2006-01-14 01:06:42 UTC (rev 13279)
@@ -267,7 +267,8 @@
 {
 	return (int) strtol(nptr, (char **) NULL, 10);
 }
-strong_alias(__atoi,atoi)
+libc_hidden_proto(atoi)
+libc_hidden_def(atoi)
 
 #endif /* INT_MAX < LONG_MAX  */
 




More information about the uClibc-cvs mailing list