From 9afb31b0e282d3c789cf9dfef8f98df1c783000c Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Tue, 22 Apr 1997 17:44:34 +0000 Subject: [PATCH] Removed wrong declarations of malloc() and realloc(). They were unused, and they broke when yacc started generating `#include ', but the breakage was hidden by compatibility cruft in gcc unless DESTDIR was unusual. --- usr.bin/mk_cmds/ct.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/mk_cmds/ct.y b/usr.bin/mk_cmds/ct.y index 2c62d4a42fe..c1b0d2fcde4 100644 --- a/usr.bin/mk_cmds/ct.y +++ b/usr.bin/mk_cmds/ct.y @@ -7,7 +7,7 @@ #include #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;