diff options
author | Richard Stallman <rms@gnu.org> | 1992-01-24 20:05:46 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-01-24 20:05:46 +0000 |
commit | 593d245960c950e820eae1e5a57bbe55833f3d12 (patch) | |
tree | 1a93967d965e24ade3a52c034950c23b0d685976 | |
parent | 886c62d1e32ac976334fa843f7400eb05eae31bd (diff) | |
download | gcc-593d245960c950e820eae1e5a57bbe55833f3d12.zip gcc-593d245960c950e820eae1e5a57bbe55833f3d12.tar.gz gcc-593d245960c950e820eae1e5a57bbe55833f3d12.tar.bz2 |
*** empty log message ***
From-SVN: r239
-rw-r--r-- | gcc/ginclude/varargs.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ginclude/varargs.h b/gcc/ginclude/varargs.h index 6e9089b..4ea1631 100644 --- a/gcc/ginclude/varargs.h +++ b/gcc/ginclude/varargs.h @@ -77,6 +77,13 @@ typedef char * __va___list; #endif /* _VA_LIST */ #endif /* !defined (_VA_LIST_) || defined (_ANSI_H) */ +/* In 4.3bsd-net2, it is said we must #undef this. + I hope this successfully identifies that system. + I don't know why this works--rms. */ +#ifdef _ANSI_H +#undef _VA_LIST_ +#endif + #define va_start(AP) AP=(char *) &__builtin_va_alist #define va_end(AP) |