diff options
author | Roland McGrath <roland@gnu.org> | 2002-08-28 08:44:07 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-08-28 08:44:07 +0000 |
commit | f6056d40d84a5bfba515d69ed95a6c46be4c565d (patch) | |
tree | 7f6ad3b4ec98aa451eb669ec39916d5f9a490259 /localedata/tst-xlocale1.c | |
parent | c096ab2534deffc2668b90fc86798d7fdaa70f55 (diff) | |
download | glibc-f6056d40d84a5bfba515d69ed95a6c46be4c565d.tar glibc-f6056d40d84a5bfba515d69ed95a6c46be4c565d.tar.gz glibc-f6056d40d84a5bfba515d69ed95a6c46be4c565d.tar.bz2 glibc-f6056d40d84a5bfba515d69ed95a6c46be4c565d.zip |
2002-08-28 Roland McGrath <roland@redhat.com>
* tst-xlocale1.c (main): Remove __ from function names.
* tst-xlocale2.c: Likewise.
Diffstat (limited to 'localedata/tst-xlocale1.c')
-rw-r--r-- | localedata/tst-xlocale1.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/localedata/tst-xlocale1.c b/localedata/tst-xlocale1.c index bfe978f485..6dcbccefdf 100644 --- a/localedata/tst-xlocale1.c +++ b/localedata/tst-xlocale1.c @@ -25,7 +25,7 @@ main (void) { int cnt; int result = 0; - __locale_t loc = __newlocale (1 << LC_ALL, "C", NULL); + locale_t loc = newlocale (1 << LC_ALL, "C", NULL); for (cnt = 0; cnt < ntests; ++cnt) { @@ -38,10 +38,10 @@ main (void) continue; } - printf ("\n__strcasecmp_l (\"%s\", \"%s\", loc)\n", + printf ("\nstrcasecmp_l (\"%s\", \"%s\", loc)\n", tests[cnt].str1, tests[cnt].str2); - r = __strcasecmp_l (tests[cnt].str1, tests[cnt].str2, loc); + r = strcasecmp_l (tests[cnt].str1, tests[cnt].str2, loc); if (tests[cnt].result == 0) { if (r != 0) |