diff options
author | brucec <brucec@FreeBSD.org> | 2010-11-22 20:10:48 +0000 |
---|---|---|
committer | brucec <brucec@FreeBSD.org> | 2010-11-22 20:10:48 +0000 |
commit | 621e6d10d808024e7f014b908cbcc5da124bd745 (patch) | |
tree | 6a56b3f4589aac0feed490c2a3650fe296d1d9b0 /bin | |
parent | 31be61effab180d09c8e91e953af32e1e7aea5e3 (diff) | |
download | FreeBSD-src-621e6d10d808024e7f014b908cbcc5da124bd745.zip FreeBSD-src-621e6d10d808024e7f014b908cbcc5da124bd745.tar.gz |
Fix some more warnings found by clang.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/sh/arith_lex.l | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/sh/arith_lex.l b/bin/sh/arith_lex.l index aede40f..1113d29 100644 --- a/bin/sh/arith_lex.l +++ b/bin/sh/arith_lex.l @@ -55,6 +55,7 @@ int yylex(void); #define YY_INPUT(buf,result,max) \ result = (*buf = *arith_buf++) ? 1 : YY_NULL; #define YY_NO_UNPUT +#define YY_NO_INPUT %} %% |