mirror of
https://github.com/encounter/wibo.git
synced 2026-03-30 11:42:31 -07:00
6de4e9a163
* 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;
|
|
}
|