int main(void) {
    /* You must declare a function before using it */
    return foo(3);
}

int foo(int a) {
    return 1;
}