diff options
author | benl <benl@FreeBSD.org> | 2011-05-18 20:57:23 +0000 |
---|---|---|
committer | benl <benl@FreeBSD.org> | 2011-05-18 20:57:23 +0000 |
commit | 437ee496916c34edb27f6aabe9e4d4f61471cd03 (patch) | |
tree | 76eb8e911164f9ef85ea33f88e6a501333ac9bc7 /crypto | |
parent | 2f470acfb599f3f99ff62a16d7c80e66be3fb291 (diff) | |
download | FreeBSD-src-437ee496916c34edb27f6aabe9e4d4f61471cd03.zip FreeBSD-src-437ee496916c34edb27f6aabe9e4d4f61471cd03.tar.gz |
Fix clang warning (why is there nowhere yyparse() is declared?).
Approved by: philip (mentor)
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/heimdal/lib/sl/slc-gram.y | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/heimdal/lib/sl/slc-gram.y b/crypto/heimdal/lib/sl/slc-gram.y index 7d9fadc..d58edfb 100644 --- a/crypto/heimdal/lib/sl/slc-gram.y +++ b/crypto/heimdal/lib/sl/slc-gram.y @@ -49,6 +49,7 @@ RCSID("$Id: slc-gram.y 20767 2007-06-01 11:24:52Z lha $"); #include "slc.h" extern FILE *yyin; extern struct assignment *assignment; +extern int yyparse(void); %} %union { |