CAP/MiniC/TP06/tests/provided/basic-functions/test_extern.c

14 lines
173 B
C
Raw Normal View History

2024-10-06 19:58:11 +02:00
// Call to external functions
int print_hello();
int main() {
int dummy;
dummy = print_hello();
return 0;
}
// EXPECTED
// Hello, world!
// LINKARGS $dir/lib/_hello.c