diff options
-rw-r--r-- | gas/config/ho-generic.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gas/config/ho-generic.h b/gas/config/ho-generic.h index b1b0a93..967603f 100644 --- a/gas/config/ho-generic.h +++ b/gas/config/ho-generic.h @@ -25,6 +25,11 @@ #define HAVE_STRERROR +#ifdef __STDC__ +extern void *malloc (), *realloc (); +#else +extern char *malloc (), *realloc (); +#endif extern int free (); /* end of ho-generic.h */ |