mirror of
https://github.com/sheumann/hush.git
synced 2025-01-03 00:31:16 +00:00
Fix from Bernhard for somebody trying to limp along with gcc 2.95.4.
This commit is contained in:
parent
16bbb20089
commit
1b2b5cfba8
@ -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__)
|
||||
|
Loading…
Reference in New Issue
Block a user