Hi,
I have the following piece of code, and it seems ROMCC can't handle it (offcourse, gcc works):
struct bla{ struct bla* next_bla; }; int main(void){return 0;}
This is the error message I get while trying to compile it:
test.c test.c:2.27: struct bla undeclared
Any ideas on what could be done to get it work, if possible?
Regards, Cristi