aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2001-05-18 05:50:26 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2001-05-18 05:50:26 +0000
commitada3b4c3668a3425fe99218369a80c2aef8c006e (patch)
tree89b206afcd656547027082f38049bb84fd3229fc /include
parent5de20e57b23d06ab0745a8c34915e7d0a0b6a03c (diff)
Notes
Diffstat (limited to 'include')
-rw-r--r--include/stddef.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/stddef.h b/include/stddef.h
index feeebc90f784c..786c073e5e374 100644
--- a/include/stddef.h
+++ b/include/stddef.h
@@ -40,6 +40,11 @@
#include <machine/ansi.h>
+#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)
@@ -59,6 +64,11 @@ 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