diff options
author | Jakob Kaivo <jkk@ung.org> | 2020-08-15 14:25:39 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2020-08-15 14:25:39 -0400 |
commit | b3bbeaa37682ce0c5fe82d225fb25a405be6caac (patch) | |
tree | 074e3d0ac2a1e4949632618924381246bd486645 | |
parent | 7734d94d174ace6c10927c8f553c7bb2e851e827 (diff) |
remove warnings about unused variables
-rw-r--r-- | wctype.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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"); |