aboutsummaryrefslogtreecommitdiff
path: root/include/platform.h
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-09-12 20:29:22 +0000
committerRob Landley <rob@landley.net>2006-09-12 20:29:22 +0000
commit1b2b5cfba81aab3e56d374ee3dcee97cde4bcb4e (patch)
tree163b2f1f13ceb929748729f3d2c7265c0ea25ed2 /include/platform.h
parent16bbb2008998f8ce2b1ad43ce640ec04e9930ab7 (diff)
downloadbusybox-1b2b5cfba81aab3e56d374ee3dcee97cde4bcb4e.tar.gz
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.h8
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__)