/* simple test compilation */ #include <stdio.h> void h (void){} void g (void){ h(); } void f (void) { g(); h(); } int main(int argc, char *argv[]) { f(); return 0; }