mirror of
https://github.com/decompals/wibo.git
synced 2025-07-10 23:25:51 +00:00
* 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
9 lines
145 B
C
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;
|
|
}
|