aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/c.h
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2026-03-18 11:37:15 +0100
committerlemon <lsof@mailbox.org>2026-03-18 11:37:15 +0100
commit3692c5caa02f1865cf66ce5640734310e42d51c9 (patch)
treef94db2210eb508523af38a2ce8cf993a82b387d4 /src/c.h
parent6889729b3484a7a63f240f717ec087a600cfda0f (diff)
c.h: accidentally removed a const
Diffstat (limited to 'src/c.h')
-rw-r--r--src/c.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c.h b/src/c.h
index a6a521d..1d185cb 100644
--- a/src/c.h
+++ b/src/c.h
@@ -106,7 +106,7 @@ typedef struct Decl {
internstr sym; /* static/extern scls */
struct { ushort align; int id; }; /* local var */
vlong value; /* enum constant */
- Builtin *builtin; /* .isbuiltin */
+ const Builtin *builtin; /* .isbuiltin */
};
} Decl;