From 7d0ed38fc3a5c2c6993ca5dd35e51c7c581d99c6 Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Wed, 7 Jul 1993 16:14:44 +0000 Subject: [PATCH] (free): Returns void if __STDC__. --- gas/config/ho-generic.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 */ -- 2.30.2