diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-09-05 22:17:49 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-09-05 22:17:49 +0200 |
commit | f355207fb06a0d4f4d1f29b77f9e816144dcea04 (patch) | |
tree | 8a301f24d9b2c0832161a7da7c486d823fecfd7c | |
parent | f32b030bda0bfa13cc664b6b2a769660064b2478 (diff) |
Formatting
-rw-r--r-- | src/lexer.l | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lexer.l b/src/lexer.l index 725e778..0f703c7 100644 --- a/src/lexer.l +++ b/src/lexer.l @@ -1,8 +1,3 @@ -%option noinput -%option nounput -%option noyywrap -%option yylineno - %{ #include <err.h> #include <stdlib.h> @@ -15,6 +10,11 @@ extern const char *current_file; %} +%option noinput +%option nounput +%option noyywrap +%option yylineno + ws [ \t] %x error |