f335c5cf0d81cb87c8f7398ff3f0cc1308b611a7
[mate.git] / ffi / native.c
1 #include <stdio.h>
2
3 void tests_Native1__printSomething____V(void)
4 {
5         printf("printSomething: woot \\o/\n");
6 }
7
8 void tests_Native1__printSomething___I_V(int a)
9 {
10         printf("printSomething: 0x%08x\n", a);
11 }
12
13 void tests_Instance5__printX___I_V(int a)
14 {
15         printf("printX: 0x%08x\n", a);
16 }