summaryrefslogtreecommitdiff
path: root/05/main.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-01-27 18:52:39 -0500
committerpommicket <pommicket@gmail.com>2022-01-27 18:52:39 -0500
commit01b8a4d728cb714e734ce308324757bfa07f02cf (patch)
tree89eee677fdf0a845fcbd1a631b8ba0ed5d321d06 /05/main.c
parentb5a498aa524a8ce450f6ee7120409acd2ddcf6be (diff)
switch to using mmap for output file
Diffstat (limited to '05/main.c')
-rw-r--r--05/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/05/main.c b/05/main.c
index deea88f..3b094ad 100644
--- a/05/main.c
+++ b/05/main.c
@@ -24,5 +24,5 @@ typedef union B{
} c;
}B;
-typedef int x[sizeof(A)];
+typedef int x[sizeof(A)+sizeof"hello"];
typedef int y[sizeof(struct B)];