diff options
Diffstat (limited to 'csu/tst-empty.c')
-rw-r--r-- | csu/tst-empty.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/csu/tst-empty.c b/csu/tst-empty.c index 980dcd60fd..e99468eef9 100644 --- a/csu/tst-empty.c +++ b/csu/tst-empty.c @@ -1,6 +1,9 @@ /* The most useful C program known to man. */ -int -main (void) +static int +do_test (void) { return 0; } + +#define TEST_FUNCTION do_test () +#include "../test-skeleton.c" |