aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ast.h
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-09-14 01:18:16 +0900
committernsfisis <nsfisis@gmail.com>2025-09-14 01:20:01 +0900
commit6a45ad108293f9fa4f90eed55fc1101711bcc0ee (patch)
treebf3c39cb721bb86085e9555224651dd2c72ef069 /src/ast.h
parent90246b99595e86e5e6fe41973db1a00171cf0462 (diff)
downloadducc-6a45ad108293f9fa4f90eed55fc1101711bcc0ee.tar.gz
ducc-6a45ad108293f9fa4f90eed55fc1101711bcc0ee.tar.zst
ducc-6a45ad108293f9fa4f90eed55fc1101711bcc0ee.zip
fix: work-around for issue where storage class is changed somewhere
Diffstat (limited to 'src/ast.h')
-rw-r--r--src/ast.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ast.h b/src/ast.h
index ce84739..8d40575 100644
--- a/src/ast.h
+++ b/src/ast.h
@@ -14,6 +14,8 @@ typedef enum {
StorageClass_typedef,
} StorageClass;
+const char* storageclass_stringify(StorageClass s);
+
typedef enum {
TypeKind_unknown,