test.c 181 B

1234567891011121314151617181920212223
  1. /* simple test compilation */
  2. #include <stdio.h>
  3. void h (void){}
  4. void g (void){
  5. h();
  6. }
  7. void f (void)
  8. {
  9. g();
  10. h();
  11. }
  12. int main(int argc, char *argv[])
  13. {
  14. f();
  15. return 0;
  16. }