diff options
author | gerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-09-18 22:15:58 +0000 |
---|---|---|
committer | gerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-09-18 22:15:58 +0000 |
commit | 9530df8b321ae1d79b92e23cd4e6241739c46ce4 (patch) | |
tree | d379c521461e57044a340a11f8f505db784ad718 /gcc/config/freebsd.h | |
parent | 5f34abf8eb3649c6e1181795469b04845a982b30 (diff) | |
download | gcc-9530df8b321ae1d79b92e23cd4e6241739c46ce4.tar.gz |
* config/freebsd.h: Update comment on types.
(WINT_TYPE): Define.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@151871 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/freebsd.h')
-rw-r--r-- | gcc/config/freebsd.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/config/freebsd.h b/gcc/config/freebsd.h index 09ae44986cd..a93e8f4cd18 100644 --- a/gcc/config/freebsd.h +++ b/gcc/config/freebsd.h @@ -68,11 +68,14 @@ along with GCC; see the file COPYING3. If not see #undef NO_IMPLICIT_EXTERN_C #define NO_IMPLICIT_EXTERN_C 1 -/* Make gcc agree with FreeBSD's standard headers (<machine/ansi.h>, etc...) */ +/* Follow FreeBSD's standard headers (<sys/_types.h> etc...). */ #undef WCHAR_TYPE #define WCHAR_TYPE "int" +#undef WINT_TYPE +#define WINT_TYPE "int" + #define MATH_LIBRARY_PROFILE "-lm_p" /* Code generation parameters. */ |