From 640f0e5d3c9057c5c6b1d4101ef2bee31ed2ad86 Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Thu, 24 May 2001 19:29:15 +0000 Subject: [PATCH] Back out rev 1.4 (wint_t and mbstate_t) as I am tired of the complaints. The STLport will probably become broken again, but I'll work on fixing it later. I wish someone would explain why the NetBSD Cirtus branch has the types in their stddef.h... Requested by: bde, ru PR: 27606 Submitted by: Naohiko Tsuji --- include/stddef.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/include/stddef.h b/include/stddef.h index 786c073e5e3..feeebc90f78 100644 --- a/include/stddef.h +++ b/include/stddef.h @@ -40,11 +40,6 @@ #include -#ifdef _BSD_MBSTATE_T_ -typedef _BSD_MBSTATE_T_ mbstate_t; -#undef _BSD_MBSTATE_T_ -#endif - typedef _BSD_PTRDIFF_T_ ptrdiff_t; #if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE) @@ -64,11 +59,6 @@ typedef _BSD_WCHAR_T_ wchar_t; #undef _BSD_WCHAR_T_ #endif -#ifdef _BSD_WINT_T_ -typedef _BSD_WINT_T_ wint_t; -#undef _BSD_WINT_T_ -#endif - #ifndef NULL #define NULL 0 #endif