diff options
author | bapt <bapt@FreeBSD.org> | 2012-05-22 16:33:10 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2012-05-22 16:33:10 +0000 |
commit | 310ab6d7ff9b6ca4c8c1159bdd4eafd63aaf34ba (patch) | |
tree | 4d20581e8625e859c371cf627f8558e129ea0d06 /usr.sbin/fifolog | |
parent | 3d5972e5d0c6e26393fc904ac9b0ae554e750b1f (diff) | |
download | FreeBSD-src-310ab6d7ff9b6ca4c8c1159bdd4eafd63aaf34ba.zip FreeBSD-src-310ab6d7ff9b6ca4c8c1159bdd4eafd63aaf34ba.tar.gz |
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)
Diffstat (limited to 'usr.sbin/fifolog')
-rw-r--r-- | usr.sbin/fifolog/lib/getdate.y | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/usr.sbin/fifolog/lib/getdate.y b/usr.sbin/fifolog/lib/getdate.y index 8e63e81..53a515c 100644 --- a/usr.sbin/fifolog/lib/getdate.y +++ b/usr.sbin/fifolog/lib/getdate.y @@ -24,11 +24,9 @@ #include "libfifolog.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 *); |