diff options
author | Bruce Korb <korbb@gcc.gnu.org> | 2000-08-04 14:20:42 +0000 |
---|---|---|
committer | Bruce Korb <korbb@gcc.gnu.org> | 2000-08-04 14:20:42 +0000 |
commit | f1fe1ac0a83c665fb4826cc7667e32baef3ec93c (patch) | |
tree | 49149c8fb8205587872dfbc33c4702337cd6ea7c | |
parent | 62a99405cf2a861aa91ec0979021fa571046c8f8 (diff) | |
download | gcc-f1fe1ac0a83c665fb4826cc7667e32baef3ec93c.zip gcc-f1fe1ac0a83c665fb4826cc7667e32baef3ec93c.tar.gz gcc-f1fe1ac0a83c665fb4826cc7667e32baef3ec93c.tar.bz2 |
Removed conditional #defines of macros GCC always defines
From-SVN: r35480
-rw-r--r-- | gcc/fixinc/tests/base/sys/types.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gcc/fixinc/tests/base/sys/types.h b/gcc/fixinc/tests/base/sys/types.h index 6c4d456..daf5c65 100644 --- a/gcc/fixinc/tests/base/sys/types.h +++ b/gcc/fixinc/tests/base/sys/types.h @@ -10,25 +10,16 @@ #if defined( GNU_TYPES_CHECK ) -#ifndef __PTRDIFF_TYPE__ -#define __PTRDIFF_TYPE__ -#endif #if !defined(_GCC_PTRDIFF_T) #define _GCC_PTRDIFF_T typedef __PTRDIFF_TYPE__ ptrdiff_t; #endif /* long int */ -#ifndef __SIZE_TYPE__ -#define __SIZE_TYPE__ -#endif #if !defined(_GCC_SIZE_T) #define _GCC_SIZE_T typedef __SIZE_TYPE__ size_t; #endif /* uint_t */ -#ifndef __WCHAR_TYPE__ -#define __WCHAR_TYPE__ -#endif #if !defined(_GCC_WCHAR_T) && ! defined(__cplusplus) #define _GCC_WCHAR_T typedef __WCHAR_TYPE__ wchar_t; |