From: Ken Raeburn Date: Wed, 7 Jul 1993 16:14:44 +0000 (+0000) Subject: (free): Returns void if __STDC__. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7d0ed38fc3a5c2c6993ca5dd35e51c7c581d99c6;p=binutils-gdb.git (free): Returns void if __STDC__. --- diff --git a/gas/config/ho-generic.h b/gas/config/ho-generic.h index 1d0d99f766c..c15181fceeb 100644 --- a/gas/config/ho-generic.h +++ b/gas/config/ho-generic.h @@ -29,9 +29,10 @@ #ifdef __STDC__ extern void *malloc (), *realloc (); +extern void free (); #else extern char *malloc (), *realloc (); -#endif extern int free (); +#endif /* end of ho-generic.h */