diff options
author | kevlo <kevlo@FreeBSD.org> | 2012-05-22 03:01:54 +0000 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2012-05-22 03:01:54 +0000 |
commit | 73776eede3f92971a785b017473a36561910d0af (patch) | |
tree | 2fa0eb2e266f5e64f8dd9aac5b3eb3aab8177d3c /bin | |
parent | 446228b9c8f7254d4433322a5f893f1fcb199b64 (diff) | |
download | FreeBSD-src-73776eede3f92971a785b017473a36561910d0af.zip FreeBSD-src-73776eede3f92971a785b017473a36561910d0af.tar.gz |
Remove redundant declaration of yyparse
Reported by: tinderbox
Diffstat (limited to 'bin')
-rw-r--r-- | bin/expr/expr.y | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/bin/expr/expr.y b/bin/expr/expr.y index 30704ed..1856ec8 100644 --- a/bin/expr/expr.y +++ b/bin/expr/expr.y @@ -74,7 +74,6 @@ int to_integer(struct val *); void to_string(struct val *); int yyerror(const char *); int yylex(void); -int yyparse(void); %} |