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