aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/find
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2012-05-22 16:33:10 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2012-05-22 16:33:10 +0000
commit5e2a209a27a8b25d6fc3f36267af4b20eb92ad16 (patch)
tree4d20581e8625e859c371cf627f8558e129ea0d06 /usr.bin/find
parent5bfe3851cf7b0ec48f8ea928f113be6f079b521e (diff)
downloadsrc-5e2a209a27a8b25d6fc3f36267af4b20eb92ad16.tar.gz
src-5e2a209a27a8b25d6fc3f36267af4b20eb92ad16.zip
Fix world after byacc import:
- old yacc(1) use to magicially append stdlib.h, while new one don't - new yacc(1) do declare yyparse by itself, fix redundant declaration of 'yyparse' Approved by: des (mentor)
Notes
Notes: svn path=/head/; revision=235789
Diffstat (limited to 'usr.bin/find')
-rw-r--r--usr.bin/find/getdate.y2
1 files changed, 0 insertions, 2 deletions
diff --git a/usr.bin/find/getdate.y b/usr.bin/find/getdate.y
index 81a9c47735e5..16ffb6eeff78 100644
--- a/usr.bin/find/getdate.y
+++ b/usr.bin/find/getdate.y
@@ -60,11 +60,9 @@ __FBSDID("$FreeBSD$");
#include <time.h>
-#define yyparse getdate_yyparse
#define yylex getdate_yylex
#define yyerror getdate_yyerror
-static int yyparse(void);
static int yylex(void);
static int yyerror(const char *);