blob: 339778a93a52b527b1075da3002a8d49e4b7263d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
static int
do_test (void)
{
printf( "main\n" );
exit(EXIT_SUCCESS);
}
#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"
|