From b3bbeaa37682ce0c5fe82d225fb25a405be6caac Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sat, 15 Aug 2020 14:25:39 -0400 Subject: remove warnings about unused variables --- wctype.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wctype.c b/wctype.c index 5676a26..89e2edb 100644 --- a/wctype.c +++ b/wctype.c @@ -8,6 +8,9 @@ void test_wctype_h(void) wint_t wint; wctrans_t wctrans; wctype_t wctype; + (void)wint; + (void)wctrans; + (void)wctype; testing_header("wctype.h"); -- cgit v1.2.1