diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-14 03:27:54 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-14 03:27:54 +0000 |
commit | 4339855440f2cbc552e94686e5eebfb84a8effbb (patch) | |
tree | 0e9d4c5a9b9020362b20271bc7a5db970d6b38c6 /libc | |
parent | abc6ee9f4d28debe15fa5e56a1618b214b2888a0 (diff) |
s/__strcmp/strcmp/
Diffstat (limited to 'libc')
-rw-r--r-- | libc/misc/intl/intl.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libc/misc/intl/intl.c b/libc/misc/intl/intl.c index e882f441c..fa3e407bd 100644 --- a/libc/misc/intl/intl.c +++ b/libc/misc/intl/intl.c @@ -29,6 +29,8 @@ #undef __OPTIMIZE__ #include <libintl.h> +libc_hidden_proto(strcmp) + /**********************************************************************/ #ifdef L___uClibc_dgettext @@ -60,7 +62,7 @@ char *__uClibc_textdomain(const char *domainname) { static const char default_str[] = "messages"; - if (domainname && *domainname && __strcmp(domainname, default_str)) { + if (domainname && *domainname && strcmp(domainname, default_str)) { __set_errno(EINVAL); return NULL; } @@ -82,7 +84,7 @@ char *__uClibc_bindtextdomain(const char *domainname, const char *dirname) #if 1 && ((dirname[0] != '/') || dirname[1]) #else - && __strcmp(dirname, dir) + && strcmp(dirname, dir) #endif ) ) { |