From 65c2b30c3f6ad55273c96e79584947fa957048ce Mon Sep 17 00:00:00 2001 From: Bruce Korb Date: Sat, 26 May 2001 15:54:35 +0000 Subject: [PATCH] wchar_t now gets wrapped inside "ifndef __cplusplus", so we have to adjust the gnu_types fix test for that. From-SVN: r42630 --- gcc/fixinc/tests/base/sys/types.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gcc/fixinc/tests/base/sys/types.h b/gcc/fixinc/tests/base/sys/types.h index daf5c659fe0..683b5e93ecd 100644 --- a/gcc/fixinc/tests/base/sys/types.h +++ b/gcc/fixinc/tests/base/sys/types.h @@ -20,9 +20,11 @@ typedef __PTRDIFF_TYPE__ ptrdiff_t; typedef __SIZE_TYPE__ size_t; #endif /* uint_t */ +#ifndef __cplusplus #if !defined(_GCC_WCHAR_T) && ! defined(__cplusplus) #define _GCC_WCHAR_T typedef __WCHAR_TYPE__ wchar_t; #endif - /* ushort_t */ + +#endif /* ushort_t */ #endif /* GNU_TYPES_CHECK */ -- 2.30.2