diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | conform/conformtest.pl | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index c95fd268b7..ff4605adbc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2001-08-18 Ulrich Drepper <drepper@redhat.com> + * conform/conformtest.pl: <inttypes.h> test required <stddef.h>. + * wcsmbs/wchar.h (wcwdith): Change parameter type to wchar_t. * wcsmbs/wcwidth.c (wcwdith): Likewise. * wcsmbs/wcwidth.h (internal_wcwdith): Likewise. diff --git a/conform/conformtest.pl b/conform/conformtest.pl index 364e34d2a4..ebef130e96 100644 --- a/conform/conformtest.pl +++ b/conform/conformtest.pl @@ -53,6 +53,7 @@ $CFLAGS{"XOPEN2K"} = "-I. -fno-builtin '-D__attribute__(x)=' -D_XOPEN_SOURCE=600 @knownproblems = ('unix', 'linux', 'i386'); # Some headers need a bit more attention. +$mustprepend{'inttypes.h'} = "#include <stddef.h>\n"; $mustprepend{'regex.h'} = "#include <sys/types.h>\n"; $mustprepend{'sched.h'} = "#include <sys/types.h>\n"; $mustprepend{'signal.h'} = "#include <pthread.h>\n"; |