diff options
author | Roland McGrath <roland@gnu.org> | 1996-05-26 22:09:13 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-05-26 22:09:13 +0000 |
commit | 71a40c74716aa19ddb181391c0583f55bb491c2f (patch) | |
tree | f49023812c478b76da868493c280d437614ee43a /wcsmbs/wchar.h | |
parent | 59dd864187ee61b6f0bfd7abc85e2fea4b479cb7 (diff) | |
download | glibc-71a40c74716aa19ddb181391c0583f55bb491c2f.tar glibc-71a40c74716aa19ddb181391c0583f55bb491c2f.tar.gz glibc-71a40c74716aa19ddb181391c0583f55bb491c2f.tar.bz2 glibc-71a40c74716aa19ddb181391c0583f55bb491c2f.zip |
* time/Makefile (tzcompile): Add missing backslash.
* wctype/wctype.h (__need_wint_t): Define this and include stddef.h.
[! _WINT_T] (wint_t): Conditionalize typedef on this in case pre-2.7.3
stddef.h doesn't define it.
* wcsmbs/wchar.h: Likewise.
* stdlib/strtod.c: Likewise.
* wcsmbs/wcstok.c: Fix argument name typo.
Diffstat (limited to 'wcsmbs/wchar.h')
-rw-r--r-- | wcsmbs/wchar.h | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/wcsmbs/wchar.h b/wcsmbs/wchar.h index b54170c3f3..cc821b8a50 100644 --- a/wcsmbs/wchar.h +++ b/wcsmbs/wchar.h @@ -34,6 +34,19 @@ __BEGIN_DECLS #define __need_NULL #include <stddef.h> + +/* We try to get wint_t from <stddef.h>, but not all GCC versions define it + there. So define it ourselves if it remains undefined. */ +#ifndef _WINT_T +/* Integral type unchanged by default argument promotions that can + hold any value corresponding to members of the extended character + set, as well as at least one value that does not correspond to any + member of the extended character set. */ +#define _WINT_T +typedef unsigned int wint_t; +#endif + + /* Conversion state information. */ typedef int mbstate_t; /* FIXME */ @@ -44,15 +57,6 @@ typedef int mbstate_t; /* FIXME */ # define WEOF (0xffffffffu) #endif -#ifndef _WINT_T -/* Integral type unchanged by default argument promotions that can - hold any value corresponding to members of the extended character - set, as well as at least one value that does not correspond to any - member of the extended character set. */ -#define _WINT_T 1 -typedef unsigned int wint_t; -#endif - /* Copy SRC to DEST. */ extern wchar_t *wcscpy __P ((wchar_t *__dest, __const wchar_t *__src)); |