diff options
Diffstat (limited to 'malloc/obstack.c')
-rw-r--r-- | malloc/obstack.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/malloc/obstack.c b/malloc/obstack.c index 30e908d981..dcc5cce386 100644 --- a/malloc/obstack.c +++ b/malloc/obstack.c @@ -470,6 +470,13 @@ _obstack_memory_used (h) # define fputs(s, f) _IO_fputs (s, f) #endif +#ifndef __attribute__ +/* This feature is available in gcc versions 2.5 and later. */ +# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5) +# define __attribute__(Spec) /* empty */ +# endif +#endif + static void __attribute__ ((noreturn)) print_and_abort () |