diff options
author | Tim Kientzle <kientzle@FreeBSD.org> | 2005-03-13 21:36:15 +0000 |
---|---|---|
committer | Tim Kientzle <kientzle@FreeBSD.org> | 2005-03-13 21:36:15 +0000 |
commit | 0c83e61cd1e24b955c885b9c770bde04621f6d3d (patch) | |
tree | a934488fba5e00912828f7a5aaaeb6289cfcf984 | |
parent | 6f55523db7172d2f9ce752f10248667851eb279e (diff) | |
download | src-0c83e61cd1e24b955c885b9c770bde04621f6d3d.tar.gz src-0c83e61cd1e24b955c885b9c770bde04621f6d3d.zip |
Fix a compile warning, fix the build.
Notes
Notes:
svn path=/head/; revision=143539
-rw-r--r-- | usr.bin/tar/getdate.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/tar/getdate.y b/usr.bin/tar/getdate.y index 8bdf4cc5559c..9f85c367940c 100644 --- a/usr.bin/tar/getdate.y +++ b/usr.bin/tar/getdate.y @@ -25,7 +25,7 @@ __FBSDID("$FreeBSD$"); #define yylex getdate_yylex #define yyerror getdate_yyerror -/* static int yyparse(void); */ +static int yyparse(void); static int yylex(void); static int yyerror(const char *); |