1
1
Fork 0
mirror of https://github.com/lune-org/lune.git synced 2025-04-13 23:10:52 +01:00
lune/tests/ffi/external_math/lib.c
2024-10-21 19:32:38 +00:00

7 lines
97 B
C
Vendored

int add_int(int a, int b) {
return a + b;
}
int mul_int(int a, int b) {
return a * b;
}