wibo/test/test.c
Ethan Roseman 6de4e9a163
3 funcs needed for some mwcc compilers (#22)
* 3 funcs needed for some mwcc compilers

* some PR feedback

* lots more via pair programming with Simon

* cleanup, add test dir as an include dir for tests

* bugfix
2022-09-24 23:59:30 +09:00

9 lines
145 B
C

#include "another.inc.c"
float apple = 3.0f;
float banana = 65.32f;
int something(void) {
return (int)(apple * banana) % 11 + SOMETHING;
}