CAP/MiniC/TP06/tests/provided/basic-functions/test_extern.c
2024-10-06 19:58:11 +02:00

14 lines
173 B
C

// Call to external functions
int print_hello();
int main() {
int dummy;
dummy = print_hello();
return 0;
}
// EXPECTED
// Hello, world!
// LINKARGS $dir/lib/_hello.c