diff options
Diffstat (limited to 'stdio-common')
-rw-r--r-- | stdio-common/tst-fseek.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/stdio-common/tst-fseek.c b/stdio-common/tst-fseek.c index 1ab4702..5b9c751 100644 --- a/stdio-common/tst-fseek.c +++ b/stdio-common/tst-fseek.c @@ -27,8 +27,8 @@ #include <sys/stat.h> -int -main (void) +static int +do_test (void) { const char *tmpdir; char *fname; @@ -476,3 +476,7 @@ main (void) return result; } + +#define TIMEOUT 3 +#define TEST_FUNCTION do_test () +#include "../test-skeleton.c" |