mirror of
https://github.com/sheumann/hush.git
synced 2025-01-04 22:34:37 +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
|
||||||
#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 ------------------------------------ */
|
/* ---- Endian Detection ------------------------------------ */
|
||||||
|
|
||||||
#if (defined __digital__ && defined __unix__)
|
#if (defined __digital__ && defined __unix__)
|
||||||
|
Loading…
Reference in New Issue
Block a user