diff options
author | Jakob Kaivo <jkk@ung.org> | 2020-08-15 14:27:10 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2020-08-15 14:27:10 -0400 |
commit | 5a5279011decbb4399a276325827ff2c06e31cc5 (patch) | |
tree | 45c7827ba89d2e8a5d7f306d9cda653400b90db2 | |
parent | 438b05a3de613efb912869f0fd55ef27d9ef9dc2 (diff) |
remove warning about unused variable
-rw-r--r-- | string.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -8,6 +8,7 @@ void test_string_h(void) char less[] = "a"; char more[] = "b"; char haystack[] = "the five boxing wizards jump quickly"; + (void)size; testing_header("string.h"); |