// test-simple-function.c int add(int a, int b) { return a + b; } int main(int argc, int argv) { return add(1, 2); }