]> git.sur5r.net Git - cc65/blobdiff - test/ref/cc65080328.c
Merge pull request #381 from pfusik/static-forward-decl
[cc65] / test / ref / cc65080328.c
index 11ef735149d4d27abdd2e10dfb4bb21f181c3389..630638f3d08eefc140bcf4c4924f486ef951a30f 100644 (file)
@@ -13,6 +13,8 @@ optimizations. If I remove the struct inside f() it compiles fine ?!?
 Best, Oliver
 */
 
+#include <stdio.h>
+
 void f(void){struct{int i;}d;}
 struct{void(*p)(void);}s={f};