diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2020-11-10 16:42:12 -0800 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2020-11-11 07:42:40 -0800 |
| commit | 40258cd29e86e9baa35600ada236ce6d7cedc429 (patch) | |
| tree | af0a9a9e7f6db7d13b471f6f0eafb073cbe532e8 /test cases/frameworks/8 flex/parser.y | |
| parent | 1a494ccfbea2b5fd3946d5ca2d829b2462ee5164 (diff) | |
| download | meson-40258cd29e86e9baa35600ada236ce6d7cedc429.tar.gz | |
tests/frameeworks 8/flex: fix undefined functions
Some compilers don't have explicit errors for undefined functions
enabled by default. Apple clang seems to.
Diffstat (limited to 'test cases/frameworks/8 flex/parser.y')
| -rw-r--r-- | test cases/frameworks/8 flex/parser.y | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test cases/frameworks/8 flex/parser.y b/test cases/frameworks/8 flex/parser.y index ff8754f32..663f2f3cf 100644 --- a/test cases/frameworks/8 flex/parser.y +++ b/test cases/frameworks/8 flex/parser.y @@ -1,3 +1,8 @@ +%{ +extern int yylex(void); +extern int yyerror(); +%} + %token BOOLEAN %% |
