diff options
Diffstat (limited to 'bin/dehtml.l')
-rw-r--r-- | bin/dehtml.l | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/bin/dehtml.l b/bin/dehtml.l index 45efc5d1..799f0926 100644 --- a/bin/dehtml.l +++ b/bin/dehtml.l @@ -14,7 +14,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -%option noyywrap +%option noinput nounput noyywrap %{ enum Token { @@ -101,8 +101,6 @@ static bool isTag(const char *tag) { } int main(int argc, char *argv[]) { - (void)input; - (void)yyunput; setlocale(LC_CTYPE, ""); bool collapse = 0; |