1 2 3 4 5 6 7 8
#include <stdio.h> void done() {} int main() { puts("in main"); done(); puts("leaving main"); return 0; }