12345678
void foo(); // <- prototype a function int main() { foo(); // <- call it } // but there's no body for it!