From d10b132bf5393e648a1c64569746c8e886d50702 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Thu, 2 Nov 2017 12:14:51 +0100 Subject: stdio-common: Use array_length and array_end macros --- stdio-common/tst-sscanf.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'stdio-common/tst-sscanf.c') diff --git a/stdio-common/tst-sscanf.c b/stdio-common/tst-sscanf.c index c070e14..9ccd86e 100644 --- a/stdio-common/tst-sscanf.c +++ b/stdio-common/tst-sscanf.c @@ -16,6 +16,7 @@ License along with the GNU C Library; if not, see . */ +#include #include #include #include @@ -184,7 +185,7 @@ do_test (void) break; } - for (i = 0; i < sizeof (int_tests) / sizeof (int_tests[0]); ++i) + for (i = 0; i < array_length (int_tests); ++i) { long dummy; int ret; @@ -198,7 +199,7 @@ do_test (void) } } - for (i = 0; i < sizeof (double_tests) / sizeof (double_tests[0]); ++i) + for (i = 0; i < array_length (double_tests); ++i) { double dummy; int ret; @@ -212,7 +213,7 @@ do_test (void) } } - for (i = 0; i < sizeof (double_tests2) / sizeof (double_tests2[0]); ++i) + for (i = 0; i < array_length (double_tests2); ++i) { double dummy; int ret; -- cgit v1.1