diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-11-08 19:34:22 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-11-08 19:34:22 +0000 |
commit | e725137c4851185862a0959bec7249276e838f6a (patch) | |
tree | 00332d96ce43589ef1ae7e512ed9a8e205364e04 /test | |
parent | b70844dfa146cd0021fb7fd54ab7be5cc5634e5b (diff) |
Re-enable the strchrnul and rawmemchr tests
Diffstat (limited to 'test')
-rw-r--r-- | test/string/string.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/string/string.c b/test/string/string.c index 70953001f..ab041e63d 100644 --- a/test/string/string.c +++ b/test/string/string.c @@ -451,7 +451,6 @@ test_strchr (void) } } -#if 0 static void test_strchrnul (void) { @@ -512,7 +511,6 @@ test_rawmemchr (void) } } } -#endif static void test_index (void) @@ -1334,13 +1332,11 @@ main (void) /* strchr. */ test_strchr (); -#if 0 /* strchrnul. */ test_strchrnul (); /* rawmemchr. */ test_rawmemchr (); -#endif /* index - just like strchr. */ test_index (); |