diff options
author | bde <bde@FreeBSD.org> | 1997-04-22 17:44:34 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-04-22 17:44:34 +0000 |
commit | 3af0aa982f501d69e72d13c441101e93e101641d (patch) | |
tree | 577a91799c127fb32044da371eb4aa0c4e958d31 /usr.bin/mk_cmds | |
parent | 5a956ea098ef7e4fa34e7c350250c3b0a1919b4f (diff) | |
download | FreeBSD-src-3af0aa982f501d69e72d13c441101e93e101641d.zip FreeBSD-src-3af0aa982f501d69e72d13c441101e93e101641d.tar.gz |
Removed wrong declarations of malloc() and realloc(). They were unused,
and they broke when yacc started generating `#include <stdlib.h>', but
the breakage was hidden by compatibility cruft in gcc unless DESTDIR
was unusual.
Diffstat (limited to 'usr.bin/mk_cmds')
-rw-r--r-- | usr.bin/mk_cmds/ct.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/mk_cmds/ct.y b/usr.bin/mk_cmds/ct.y index 2c62d4a..c1b0d2f 100644 --- a/usr.bin/mk_cmds/ct.y +++ b/usr.bin/mk_cmds/ct.y @@ -7,7 +7,7 @@ #include <stdio.h> #include "copyright.h" -char *str_concat3(), *ds(), *generate_rqte(), *malloc(), *realloc(), *quote(); +char *str_concat3(), *ds(), *generate_rqte(), *quote(); long flag_value(); char *last_token = (char *)NULL; FILE *output_file; |