From fdab9d9c182b54579c022dc53ee9285a8db90447 Mon Sep 17 00:00:00 2001 From: lemon Date: Thu, 11 Dec 2025 12:33:05 +0100 Subject: c: support for noreturn, and decl parsing cleanup --- c/c.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'c/c.h') diff --git a/c/c.h b/c/c.h index 4b2b197..a19542b 100644 --- a/c/c.h +++ b/c/c.h @@ -86,6 +86,8 @@ struct decl { union type ty; uchar scls; uchar qual : 2, + noret : 1, + inlin : 1, isenum : 1, isdef : 1, isbuiltin : 1; -- cgit v1.2.3