aboutsummaryrefslogtreecommitdiff
path: root/builtins/bool.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-09-05 15:31:54 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-09-05 15:31:54 -0400
commit04c8fb0362dc4f922c1e96ca01fb87a3e8e74214 (patch)
treea5a65a625a9b697ac6875874b9b4c04abd3d0a65 /builtins/bool.c
parent391c1b6bde0d5fd6f306f9613109e18ec487afe7 (diff)
Replace $Type with Type$info for builtin TypeInfos
Diffstat (limited to 'builtins/bool.c')
-rw-r--r--builtins/bool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtins/bool.c b/builtins/bool.c
index b3ba0bd7..677cfd97 100644
--- a/builtins/bool.c
+++ b/builtins/bool.c
@@ -48,7 +48,7 @@ public Bool_t Bool$random(double p)
return (drand48() < p);
}
-public const TypeInfo $Bool = {
+public const TypeInfo Bool$info = {
.size=sizeof(bool),
.align=__alignof__(bool),
.tag=CustomInfo,