summaryrefslogtreecommitdiff
path: root/05/main.c
diff options
context:
space:
mode:
Diffstat (limited to '05/main.c')
-rw-r--r--05/main.c17
1 files changed, 16 insertions, 1 deletions
diff --git a/05/main.c b/05/main.c
index 72c22aa..a630ef7 100644
--- a/05/main.c
+++ b/05/main.c
@@ -1 +1,16 @@
-/* #include "tests/parse_stb_image.h" */
+/* #include "tests/parse_stb_truetype.h" */
+
+/*
+; @NONSTANDARD:
+; the following does not work:
+; typedef struct T Type;
+; struct T{
+; int m;
+; };
+; ...
+; Type *x = ...;
+; x->m; *trying to access member of incomplete struct
+This needs to be fixed because otherwise you can't do:
+struct A { struct B *blah; }
+struct B { struct A *blah; }
+*/