diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-08-04 12:45:57 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-08-04 12:45:57 +0000 |
commit | 1d3cade7132593f52635ac59ff5695e6bea73afa (patch) | |
tree | 4e6c9fb72afba3fcd87c1e4e22d194f32e46d1fd /gcc/cppinit.c | |
parent | 8cd20a21a0ea0610ed635b2000b0c7294415901c (diff) | |
download | gcc-1d3cade7132593f52635ac59ff5695e6bea73afa.tar.gz |
* cppdefault.h (WINT_TYPE): Define.
* cppinit.c (builtin_array): Define __WINT_TYPE__.
* tradcpp.c (initialize_builtins): Define __WINT_TYPE__.
* tm.texi (NO_BUILTIN_WINT_TYPE, WINT_TYPE): Document.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35478 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cppinit.c')
-rw-r--r-- | gcc/cppinit.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/cppinit.c b/gcc/cppinit.c index 2499a90e1dc..c845028d357 100644 --- a/gcc/cppinit.c +++ b/gcc/cppinit.c @@ -531,6 +531,9 @@ static const struct builtin builtin_array[] = #ifndef NO_BUILTIN_WCHAR_TYPE C("__WCHAR_TYPE__", WCHAR_TYPE), #endif +#ifndef NO_BUILTIN_WINT_TYPE + C("__WINT_TYPE__", WINT_TYPE), +#endif /* Named operators known to the preprocessor. These cannot be #defined and always have their stated meaning. They are treated like normal |