android_system_core/libacc/tests/data/float.c
Jack Palevich 1a539db23c Some x86 floating point code works.
We now check the types and number of arguments to a function.
2009-07-08 13:04:41 -07:00

6 lines
92 B
C

int main() {
printf("int: %d float: %g double: %g\n", 1, 2.2f, 3.3);
return 42;
}