OSDN Git Service

Replace 'new' in a prototype to avoid c++ problems.
authorManuel Novoa III <mjn3@codepoet.org>
Fri, 1 Aug 2003 23:56:15 +0000 (23:56 -0000)
committerManuel Novoa III <mjn3@codepoet.org>
Fri, 1 Aug 2003 23:56:15 +0000 (23:56 -0000)
libc/sysdeps/linux/common/bits/uClibc_locale.h

index 56819ba..1602c28 100644 (file)
@@ -325,7 +325,7 @@ extern __locale_t __curlocale_var;
 #ifdef __UCLIBC_HAS_THREADS__
 
 extern __locale_t __curlocale(void)  __THROW __attribute__ ((__const__));
-extern __locale_t __curlocale_set(__locale_t new);
+extern __locale_t __curlocale_set(__locale_t newloc);
 #define __UCLIBC_CURLOCALE           (__curlocale())
 #define __UCLIBC_CURLOCALE_DATA      (*__curlocale())