tst-profile-static.c 149 B

12345678910
  1. #include <stdio.h>
  2. static int
  3. do_test (void)
  4. {
  5. puts ("Hello world");
  6. return 0;
  7. }
  8. #define TEST_FUNCTION do_test ()
  9. #include "../test-skeleton.c"