summaryrefslogtreecommitdiff
path: root/usr.bin/yacc/defs.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2011-04-01 21:21:40 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2011-04-01 21:21:40 +0000
commit21c90d555a27321fca29f9b7466d57b5585b54b5 (patch)
tree94912e435ee3ffed3d115ca72223b124068194e2 /usr.bin/yacc/defs.h
parent13d9c1d52488002d7a24c749e8614d67658510c9 (diff)
Add calls to some existing but previously unused free functions. Also
replace a loop with a memset. From Michael W Bombardieri. ok millert
Diffstat (limited to 'usr.bin/yacc/defs.h')
-rw-r--r--usr.bin/yacc/defs.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/yacc/defs.h b/usr.bin/yacc/defs.h
index 9708a43c065..32fe6082c15 100644
--- a/usr.bin/yacc/defs.h
+++ b/usr.bin/yacc/defs.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: defs.h,v 1.11 2005/06/08 03:18:59 pvalchev Exp $ */
+/* $OpenBSD: defs.h,v 1.12 2011/04/01 21:21:39 nicm Exp $ */
/* $NetBSD: defs.h,v 1.6 1996/03/19 03:21:30 jtc Exp $ */
/*
@@ -358,6 +358,8 @@ extern void lalr(void);
extern void reader(void);
extern void lr0(void);
+extern void free_nullable(void);
+extern void free_derives(void);
extern void make_parser(void);
extern void verbose(void);
extern void output(void);