From e6100b5b76a71c4c1fd9f10dfd24763195b0a4f2 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sat, 15 Aug 2020 14:29:00 -0400 Subject: remove warnings about unused variables --- stdio.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/stdio.c b/stdio.c index 1721f6d..cf5d6ac 100644 --- a/stdio.c +++ b/stdio.c @@ -7,6 +7,9 @@ void test_stdio_h(void) FILE *file; fpos_t fpos; size_t size; + (void)file; + (void)fpos; + (void)size; int buftypes[] = { _IOFBF, @@ -23,6 +26,8 @@ void test_stdio_h(void) testing_header("stdio.h"); test_distinct(buftypes); + test_distinct(seeks); + test_min(BUFSIZ, 256); test_min(FILENAME_MAX, 1); test_min(FOPEN_MAX, 8); -- cgit v1.2.1