aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/test.cff
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2022-08-06 05:25:16 +0200
committerlemon <lsof@mailbox.org>2022-08-06 05:25:16 +0200
commit3083cf126cf3989b257546aa3b1b69608aac7923 (patch)
treeae6b62edb201d7cbcfe4b1fed528bf875b9919b1 /bootstrap/test.cff
parentb8f676ae7ffe12877d013c5256a785d35915c491 (diff)
sizeof
Diffstat (limited to 'bootstrap/test.cff')
-rw-r--r--bootstrap/test.cff4
1 files changed, 4 insertions, 0 deletions
diff --git a/bootstrap/test.cff b/bootstrap/test.cff
index fb1741d..011d386 100644
--- a/bootstrap/test.cff
+++ b/bootstrap/test.cff
@@ -46,5 +46,9 @@ extern fn main (argc int, argv **u8) int {
printf("%d\n", is[i]);
}
+ printf("sizeof(is) = %zu\n", sizeof(is));
+ printf("sizeof *void = %zu\n", sizeof *void);
+
+
return 0;
}