2011-01-19 15:32:35 -05:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2015-08-03 16:14:21 +00:00
|
|
|
static int
|
|
|
|
do_test (void)
|
2011-01-19 15:32:35 -05:00
|
|
|
{
|
|
|
|
printf( "main\n" );
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
}
|
2015-08-03 16:14:21 +00:00
|
|
|
|
|
|
|
#define TEST_FUNCTION do_test ()
|
|
|
|
#include "../test-skeleton.c"
|