diff options
author | tjr <tjr@FreeBSD.org> | 2002-09-09 07:17:55 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2002-09-09 07:17:55 +0000 |
commit | 7ca7dd3e039714d993a2a5c696002e55c03a7271 (patch) | |
tree | f57490346407b63aee261637278fcf7866cb4986 | |
parent | d630de954beef56eaaf9c1f267ce23c38b389606 (diff) | |
download | FreeBSD-src-7ca7dd3e039714d993a2a5c696002e55c03a7271.zip FreeBSD-src-7ca7dd3e039714d993a2a5c696002e55c03a7271.tar.gz |
Remove the typedef of wctype_t from this header; we don't support the
XSI mistake of making everything from <wctype.h> visible here.
If we did choose to support it, we could just #include <wctype.h>.
-rw-r--r-- | include/wchar.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/wchar.h b/include/wchar.h index 335e4b2..1871222 100644 --- a/include/wchar.h +++ b/include/wchar.h @@ -93,11 +93,6 @@ typedef __wchar_t wchar_t; #endif #endif -#ifndef _WCTYPE_T -typedef unsigned long wctype_t; -#define _WCTYPE_T -#endif - #ifndef _WINT_T_DECLARED typedef __wint_t wint_t; #define _WINT_T_DECLARED |