diff options
author | Rob Landley <rob@landley.net> | 2006-09-12 20:29:22 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-09-12 20:29:22 +0000 |
commit | 1b2b5cfba81aab3e56d374ee3dcee97cde4bcb4e (patch) | |
tree | 163b2f1f13ceb929748729f3d2c7265c0ea25ed2 /include/platform.h | |
parent | 16bbb2008998f8ce2b1ad43ce640ec04e9930ab7 (diff) |
Fix from Bernhard for somebody trying to limp along with gcc 2.95.4.
Diffstat (limited to 'include/platform.h')
-rw-r--r-- | include/platform.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/platform.h b/include/platform.h index fdaf50920..fa7749b39 100644 --- a/include/platform.h +++ b/include/platform.h @@ -83,6 +83,14 @@ # endif #endif +/* gcc-2.95 had no va_copy but only __va_copy. */ +#if !__GNUC_PREREQ (3,0) +# include <stdarg.h> +# if !defined va_copy && defined __va_copy +# define va_copy(d,s) __va_copy((d),(s)) +# endif +#endif + /* ---- Endian Detection ------------------------------------ */ #if (defined __digital__ && defined __unix__) |