From f6056d40d84a5bfba515d69ed95a6c46be4c565d Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 28 Aug 2002 08:44:07 +0000 Subject: 2002-08-28 Roland McGrath * tst-xlocale1.c (main): Remove __ from function names. * tst-xlocale2.c: Likewise. --- localedata/tst-xlocale1.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'localedata/tst-xlocale1.c') 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) -- cgit v1.2.3