summaryrefslogtreecommitdiff
path: root/string
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-08-29 09:26:30 +0000
committerRoland McGrath <roland@gnu.org>2002-08-29 09:26:30 +0000
commit86ad5f0cf575cec046aa6e39184f9a49a7c823f3 (patch)
treeee3042e0c1af50329b92e3f84314007095d92df5 /string
parent160d067b046c2ee3296853129d1ea9a99156e2b8 (diff)
2002-08-29 Roland McGrath <roland@redhat.com>
* string/tst-strxfrm.c: Remove __ from function names.
Diffstat (limited to 'string')
-rw-r--r--string/tst-strxfrm.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/string/tst-strxfrm.c b/string/tst-strxfrm.c
index aef5e4e4ee..2ae2e2952f 100644
--- a/string/tst-strxfrm.c
+++ b/string/tst-strxfrm.c
@@ -15,7 +15,7 @@ test (const char *locale)
size_t r;
size_t l;
char *buf;
- __locale_t loc;
+ locale_t loc;
int result = 0;
if (setlocale (LC_COLLATE, locale) == NULL)
@@ -39,9 +39,9 @@ test (const char *locale)
result = 1;
}
- loc = __newlocale (1 << LC_ALL, locale, NULL);
+ loc = newlocale (1 << LC_ALL, locale, NULL);
- r = __strxfrm_l (buf, string, bufsize, loc);
+ r = strxfrm_l (buf, string, bufsize, loc);
l = strlen (buf);
if (r != l)
{
@@ -50,7 +50,7 @@ test (const char *locale)
result = 1;
}
- __freelocale (loc);
+ freelocale (loc);
free (buf);