summary refs log tree commit diff
path: root/locale
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-08-28 08:44:40 +0000
committerRoland McGrath <roland@gnu.org>2002-08-28 08:44:40 +0000
commit4a42ea75dace42f2745c4e0c93f68d272fd57eb2 (patch)
treec3410bdff97a2d0920b23616d0eed78b11e64920 /locale
parentf6056d40d84a5bfba515d69ed95a6c46be4c565d (diff)
downloadglibc-4a42ea75dace42f2745c4e0c93f68d272fd57eb2.tar.gz
glibc-4a42ea75dace42f2745c4e0c93f68d272fd57eb2.tar.xz
glibc-4a42ea75dace42f2745c4e0c93f68d272fd57eb2.zip
* locale/tst-C-locale.c (run_test): Remove __ from function names.
Diffstat (limited to 'locale')
-rw-r--r--locale/tst-C-locale.c36
1 files changed, 18 insertions, 18 deletions
diff --git a/locale/tst-C-locale.c b/locale/tst-C-locale.c
index 2f26b5736d..a5cb35dfb9 100644
--- a/locale/tst-C-locale.c
+++ b/locale/tst-C-locale.c
@@ -1,5 +1,5 @@
 /* Tests of C and POSIX locale contents.
-   Copyright (C) 2000, 2001 Free Software Foundation, Inc.
+   Copyright (C) 2000,01,02 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@redhat.com>, 2000.
 
@@ -35,7 +35,7 @@ run_test (const char *locname)
   const char *str;
   const wchar_t *wstr;
   int result = 0;
-  __locale_t loc;
+  locale_t loc;
 
   /* ISO C stuff.  */
   lc = localeconv ();
@@ -223,7 +223,7 @@ run_test (const char *locname)
   STRTEST (NOSTR, "");
 
   /* Test the new locale mechanisms.  */
-  loc = __newlocale (LC_ALL, locname, NULL);
+  loc = newlocale (LC_ALL, locname, NULL);
   if (loc == NULL)
     {
       printf ("cannot create locale object for locale %s\n", locname);
@@ -235,19 +235,19 @@ run_test (const char *locname)
 
 #undef STRTEST
 #define STRTEST(name, exp) \
-      str = __nl_langinfo_l (name, loc);				      \
+      str = nl_langinfo_l (name, loc);				      \
       if (strcmp (str, exp) != 0)					      \
 	{								      \
-	  printf ("__nl_langinfo_l(" #name ") in locale %s wrong "	      \
+	  printf ("nl_langinfo_l(" #name ") in locale %s wrong "	      \
 		  "(is \"%s\", should be \"%s\")\n", locname, str, exp);      \
 	  result = 1;							      \
 	}
 #undef WSTRTEST
 #define WSTRTEST(name, exp) \
-      wstr = (wchar_t *) __nl_langinfo_l (name, loc);			      \
+      wstr = (wchar_t *) nl_langinfo_l (name, loc);			      \
       if (wcscmp (wstr, exp) != 0)					      \
 	{								      \
-	  printf ("__nl_langinfo_l(" #name ") in locale %s wrong "	      \
+	  printf ("nl_langinfo_l(" #name ") in locale %s wrong "	      \
 		  "(is \"%S\", should be \"%S\")\n", locname, wstr, exp);     \
 	  result = 1;							      \
 	}
@@ -369,9 +369,9 @@ run_test (const char *locname)
       for (c = 0; c < 128; ++c)
 	{
 #define CLASSTEST(name) \
-	  if (is##name (c) != __is##name##_l (c, loc))			      \
+	  if (is##name (c) != is##name##_l (c, loc))			      \
 	    {								      \
-	      printf ("is%s('\\%o') != __is%s_l('\\%o')\n",		      \
+	      printf ("is%s('\\%o') != is%s_l('\\%o')\n",		      \
 		      #name, c, #name, c);				      \
 	      result = 1;						      \
 	    }
@@ -390,11 +390,11 @@ run_test (const char *locname)
 
 	  /* Character mapping tests.  */
 #define MAPTEST(name) \
-	  if (to##name (c) != __to##name##_l (c, loc))			      \
+	  if (to##name (c) != to##name##_l (c, loc))			      \
 	    {								      \
-	      printf ("to%s('\\%o') != __to%s_l('\\%o'): '\\%o' vs '\\%o'\n", \
+	      printf ("to%s('\\%o') != to%s_l('\\%o'): '\\%o' vs '\\%o'\n", \
 		      #name, c, #name, c,				      \
-		      to##name (c), __to##name##_l (c, loc));		      \
+		      to##name (c), to##name##_l (c, loc));		      \
 	      result = 1;						      \
 	    }
 	  MAPTEST (lower);
@@ -408,9 +408,9 @@ run_test (const char *locname)
 	{
 #undef CLASSTEST
 #define CLASSTEST(name) \
-	  if (isw##name (c) != __isw##name##_l (c, loc))		      \
+	  if (isw##name (c) != isw##name##_l (c, loc))		      \
 	    {								      \
-	      printf ("isw%s('\\%o') != __isw%s_l('\\%o')\n",		      \
+	      printf ("isw%s('\\%o') != isw%s_l('\\%o')\n",		      \
 		      #name, c, #name, c);				      \
 	      result = 1;						      \
 	    }
@@ -432,18 +432,18 @@ run_test (const char *locname)
 	     UCS4.  */
 #undef MAPTEST
 #define MAPTEST(name) \
-	  if (tow##name (c) != __tow##name##_l (c, loc))		      \
+	  if (tow##name (c) != tow##name##_l (c, loc))		      \
 	    {								      \
-	      printf ("tow%s('\\%o') != __tow%s_l('\\%o'): '\\%o' vs '\\%o'\n",\
+	      printf ("tow%s('\\%o') != tow%s_l('\\%o'): '\\%o' vs '\\%o'\n",\
 		      #name, c, #name, c,				      \
-		      tow##name (c), __tow##name##_l (c, loc));		      \
+		      tow##name (c), tow##name##_l (c, loc));		      \
 	      result = 1;						      \
 	    }
 	  MAPTEST (lower);
 	  MAPTEST (upper);
 	}
 
-      __freelocale (loc);
+      freelocale (loc);
     }
 
   return result;