diff options
Diffstat (limited to 'stdio-common/tst-sprintf.c')
-rw-r--r-- | stdio-common/tst-sprintf.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/stdio-common/tst-sprintf.c b/stdio-common/tst-sprintf.c index c4e911fe94..2fe373f350 100644 --- a/stdio-common/tst-sprintf.c +++ b/stdio-common/tst-sprintf.c @@ -4,8 +4,8 @@ #include <string.h> -int -main (void) +static int +do_test (void) { char buf[100]; int result = 0; @@ -73,3 +73,6 @@ main (void) return result; } + +#define TEST_FUNCTION do_test () +#include "../test-skeleton.c" |