From 90b8a837789eb99c44bcea9abee53012f2df71a4 Mon Sep 17 00:00:00 2001 From: Shagun Agrawal Date: Sun, 15 Dec 2024 10:26:36 +0530 Subject: Add lexer for unsigned int / long --- src/cljcc/lexer.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cljcc/lexer.clj') diff --git a/src/cljcc/lexer.clj b/src/cljcc/lexer.clj index d092ea6..61022d9 100644 --- a/src/cljcc/lexer.clj +++ b/src/cljcc/lexer.clj @@ -70,8 +70,8 @@ (lex " int main() { - long a = 110; + long unsigned a = 110lu; } ") - ()) + ()) -- cgit v1.2.3