diff options
Diffstat (limited to 'string/tst-strlen.c')
-rw-r--r-- | string/tst-strlen.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/string/tst-strlen.c b/string/tst-strlen.c index 8376831de5..15fbc8bd7b 100644 --- a/string/tst-strlen.c +++ b/string/tst-strlen.c @@ -5,7 +5,7 @@ #include <stdio.h> #include <string.h> -static int +int do_test (void) { static const size_t lens[] = { 0, 1, 0, 2, 0, 1, 0, 3, @@ -54,5 +54,4 @@ strnlen failed for base=%Zu, words=%Zu, and last=%Zu (is %zd, expected %zd)\n", return 0; } -#define TEST_FUNCTION do_test () -#include "../test-skeleton.c" +#include <support/test-driver.c> |