diff options
Diffstat (limited to 'string')
-rw-r--r-- | string/tester.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/string/tester.c b/string/tester.c index 0a69d2639f..dab570500c 100644 --- a/string/tester.c +++ b/string/tester.c @@ -174,13 +174,11 @@ test_strcpy (void) SIMPLE_COPY(strcpy, 15, "555555555555555", 56); SIMPLE_COPY(strcpy, 16, "6666666666666666", 57); -#if 0 /* Simple test using implicitly coerced `void *' arguments. */ const void *src = "frobozz"; void *dst = one; check (strcpy (dst, src) == dst, 1); equal (dst, "frobozz", 2); -#endif } static void |