Fix up wchar.h for XPG7.
authorUlrich Drepper <drepper@redhat.com>
Tue, 12 Jan 2010 04:07:47 +0000 (20:07 -0800)
committerUlrich Drepper <drepper@redhat.com>
Tue, 12 Jan 2010 04:07:47 +0000 (20:07 -0800)
ChangeLog
conform/data/wchar.h-data
include/features.h

index 40056f0..02d83df 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2010-01-11  Ulrich Drepper  <drepper@redhat.com>
 
+       * conform/data/wchar.h-data: Fix up XPG7 tests.
+
+       * include/features.h: Fix __USE_ISOC95 handling.
+
        * conform/data/wordexp.h-data: Fix typo in last change.
 
        * conform/data/unistd.h-data: Fix up older POSIX tests.
index 0911f12..bf9e1a9 100644 (file)
@@ -53,12 +53,12 @@ function wint_t towlower (wint_t)
 function wint_t towupper (wint_t)
 #endif
 function wint_t ungetwc (wint_t, FILE*)
-function int vfwprintf (FILE*, const wchar_t*, va_list)
-function int vfwscanf (FILE*, const wchar_t*, va_list)
-function int vwprintf (const wchar_t*, va_list)
-function int vwscanf (const wchar_t*, va_list)
-function int vswprintf (wchar_t*, size_t, const wchar_t*, va_list)
-function int vswscanf (const wchar_t*, const wchar_t*, va_list)
+function int vfwprintf (FILE*, const wchar_t*, __gnuc_va_list)
+function int vfwscanf (FILE*, const wchar_t*, __gnuc_va_list)
+function int vwprintf (const wchar_t*, __gnuc_va_list)
+function int vwscanf (const wchar_t*, __gnuc_va_list)
+function int vswprintf (wchar_t*, size_t, const wchar_t*, __gnuc_va_list)
+function int vswscanf (const wchar_t*, const wchar_t*, __gnuc_va_list)
 #if defined XOPEN2K8 || defined POSIX2008
 function {wchar_t*} wcpcpy (wchar_t*, const wchar_t*)
 function {wchar_t*} wcpncpy (wchar_t*, const wchar_t*, size_t)
@@ -102,7 +102,9 @@ function double wcstod (const wchar_t*, wchar_t**)
 function {wchar_t*} wcstok (wchar_t*, const wchar_t*, wchar_t**)
 function {long int} wcstol (const wchar_t*, wchar_t**, int)
 function {unsigned long int} wcstoul (const wchar_t*, wchar_t**, int)
+#if defined UNIX98 || defined XOPEN2K
 function {wchar_t*} wcswcs (const wchar_t*, const wchar_t*)
+#endif
 #if !defined ISO && !defined POSIX && !defined POSIX2008
 function int wcswidth (const wchar_t*, size_t)
 #endif
index 21822b6..e7c8da1 100644 (file)
 
 /* If _GNU_SOURCE was defined by the user, turn on all the other features.  */
 #ifdef _GNU_SOURCE
+# undef  _ISOC95_SOURCE
+# define _ISOC95_SOURCE        1
 # undef  _ISOC99_SOURCE
 # define _ISOC99_SOURCE        1
 # undef  _POSIX_SOURCE
 
 #if (_POSIX_C_SOURCE - 0) >= 200112L
 # define __USE_XOPEN2K         1
+# undef __USE_ISOC95
+# define __USE_ISOC95          1
 # undef __USE_ISOC99
 # define __USE_ISOC99          1
 #endif
 #   endif
 #   define __USE_XOPEN2K       1
 #   define __USE_XOPEN2KXSI    1
+#   undef __USE_ISOC95
+#   define __USE_ISOC95                1
 #   undef __USE_ISOC99
 #   define __USE_ISOC99                1
 #  endif