summaryrefslogtreecommitdiff
path: root/usr.bin/compile_et
diff options
context:
space:
mode:
authorBill Paul <wpaul@FreeBSD.org>1995-03-15 19:05:28 +0000
committerBill Paul <wpaul@FreeBSD.org>1995-03-15 19:05:28 +0000
commitd93cc1a933c4f08c8df70b653ff1b56c2664f3bd (patch)
tree9c601380728ffa8a30306452d56b8fdf69e6db0c /usr.bin/compile_et
parent8e95bee6d46fa7f66791a004005701d486a03353 (diff)
downloadsrc-test2-d93cc1a933c4f08c8df70b653ff1b56c2664f3bd.tar.gz
src-test2-d93cc1a933c4f08c8df70b653ff1b56c2664f3bd.zip
Notes
Diffstat (limited to 'usr.bin/compile_et')
-rw-r--r--usr.bin/compile_et/error_table.y7
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/compile_et/error_table.y b/usr.bin/compile_et/error_table.y
index 11a8b2ddc4a3..cb3c0dabc7cf 100644
--- a/usr.bin/compile_et/error_table.y
+++ b/usr.bin/compile_et/error_table.y
@@ -1,6 +1,7 @@
%{
#include <stdio.h>
-char *str_concat(), *ds(), *quote(), *malloc(), *realloc();
+char *str_concat(), *ds(), *quote();
+void *malloc(), *realloc();
char *current_token = (char *)NULL;
extern char *table_name;
%}
@@ -73,10 +74,10 @@ description : QUOTED_STRING
#ifndef lint
static char const rcsid_error_table_y[] =
- "$Header: error_table.y,v 1.7 89/01/01 07:23:17 raeburn Locked $";
+ "$Header: /home/ncvs/src/usr.bin/compile_et/error_table.y,v 1.2 1995/01/14 22:29:33 wollman Exp $";
#endif
-char *malloc(), *realloc();
+void *malloc(), *realloc();
extern FILE *hfile, *cfile;
static long gensym_n = 0;