diff options
author | Ken Raeburn <raeburn@cygnus> | 1993-07-07 16:14:44 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1993-07-07 16:14:44 +0000 |
commit | 7d0ed38fc3a5c2c6993ca5dd35e51c7c581d99c6 (patch) | |
tree | 3c2f029ac80535ce8e23fbef648f35f779b35631 /gas | |
parent | 2fd415dfa2e4fd3b85871729ce530b3e79abad62 (diff) | |
download | gdb-7d0ed38fc3a5c2c6993ca5dd35e51c7c581d99c6.zip gdb-7d0ed38fc3a5c2c6993ca5dd35e51c7c581d99c6.tar.gz gdb-7d0ed38fc3a5c2c6993ca5dd35e51c7c581d99c6.tar.bz2 |
(free): Returns void if __STDC__.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/config/ho-generic.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gas/config/ho-generic.h b/gas/config/ho-generic.h index 1d0d99f..c15181f 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 */ |