summaryrefslogtreecommitdiff
path: root/05/main.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-01-19 11:57:42 -0500
committerpommicket <pommicket@gmail.com>2022-01-19 11:57:42 -0500
commit57d918f8ff274682a439433ae30fb1a21d6f0b34 (patch)
tree61b3a658cf0f92f458694d5028bbb13a723ec5bf /05/main.c
parentc4b15b98bbba3a95014c877ed6bc86906c88f368 (diff)
type splitting
Diffstat (limited to '05/main.c')
-rw-r--r--05/main.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/05/main.c b/05/main.c
index 23ca650..569230b 100644
--- a/05/main.c
+++ b/05/main.c
@@ -1 +1,4 @@
-typedef int x;
+typedef struct {
+ int i[41];
+ long double d;
+} (*x)(void);