diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-04-25 18:22:17 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-04-25 18:22:17 +0000 |
commit | 9db41a6cdfb2ab8bcb7dc9b33e78c4be41f2384c (patch) | |
tree | 3eba2dd22faf7077c1be6acb344cb5b229fd542d /gcc/ginclude/stdarg.h | |
parent | 81438beeefb14334c7f88f0b1b59ae8ebcda86e0 (diff) | |
download | gcc-9db41a6cdfb2ab8bcb7dc9b33e78c4be41f2384c.tar.gz |
Recognize __FreeBSD__.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@7153 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ginclude/stdarg.h')
-rw-r--r-- | gcc/ginclude/stdarg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ginclude/stdarg.h b/gcc/ginclude/stdarg.h index 55ac26e0847..27a37fc54a8 100644 --- a/gcc/ginclude/stdarg.h +++ b/gcc/ginclude/stdarg.h @@ -142,13 +142,13 @@ typedef __gnuc_va_list va_list; But on BSD NET2 we must not test or define or undef it. (Note that the comments in NET 2's ansi.h are incorrect for _VA_LIST_--see stdio.h!) */ -#if !defined (_VA_LIST_) || defined (__BSD_NET2__) || defined (____386BSD____) || defined (__bsdi__) +#if !defined (_VA_LIST_) || defined (__BSD_NET2__) || defined (____386BSD____) || defined (__bsdi__) || defined (__FreeBSD__) /* The macro _VA_LIST is used in SCO Unix 3.2. */ #ifndef _VA_LIST /* The macro _VA_LIST_T_H is used in the Bull dpx2 */ #ifndef _VA_LIST_T_H #define _VA_LIST_T_H -#if !(defined (__BSD_NET2__) || defined (____386BSD____) || defined (__bsdi__)) +#if !(defined (__BSD_NET2__) || defined (____386BSD____) || defined (__bsdi__) || defined (__FreeBSD__)) #define _VA_LIST_ #endif #define _VA_LIST |