From eb1d068beeaaa420b558595751295eec35ad0c3c Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Sat, 12 Sep 2026 00:18:11 +0200 Subject: Support variadic extern procedures --- boot/lexer.ll | 3 +++ 1 file changed, 3 insertions(+) (limited to 'boot/lexer.ll') diff --git a/boot/lexer.ll b/boot/lexer.ll index 17fe0ca..e8dde7c 100644 --- a/boot/lexer.ll +++ b/boot/lexer.ll @@ -184,6 +184,9 @@ program { #\[ { return yy::parser::make_GENERIC_OPEN(this->location); } +#\{ { + return yy::parser::make_ATTRIBUTE_OPEN(this->location); +} (0|{NATURAL})u|{HEXADECIMAL} { if (auto result = parse_integer(yytext, 0)) { -- cgit v1.2.3