From 76a90f7d49e9878d7c7aa0768c0301a1225d05a9 Mon Sep 17 00:00:00 2001 From: obrien Date: Tue, 9 Jul 2002 05:13:30 +0000 Subject: Don't define wchar_t if we are a C++ compiler. PR: 31864, 40084 --- include/stddef.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/stddef.h') diff --git a/include/stddef.h b/include/stddef.h index feb1cdc..1e8dd2e 100644 --- a/include/stddef.h +++ b/include/stddef.h @@ -55,10 +55,12 @@ typedef _BSD_SIZE_T_ size_t; #undef _BSD_SIZE_T_ #endif +#ifndef __cplusplus #ifdef _BSD_WCHAR_T_ typedef _BSD_WCHAR_T_ wchar_t; #undef _BSD_WCHAR_T_ #endif +#endif #ifndef NULL #define NULL 0 -- cgit v1.1