diff options
Diffstat (limited to 'string/test-strcat.c')
-rw-r--r-- | string/test-strcat.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/string/test-strcat.c b/string/test-strcat.c index b5aab0f66f..59b953c962 100644 --- a/string/test-strcat.c +++ b/string/test-strcat.c @@ -54,11 +54,10 @@ #endif /* WIDE */ typedef CHAR *(*proto_t) (CHAR *, const CHAR *); -CHAR *SIMPLE_STRCAT (CHAR *, const CHAR *); -IMPL (SIMPLE_STRCAT, 0) IMPL (STRCAT, 1) +/* Naive implementation to verify results. */ CHAR * SIMPLE_STRCAT (CHAR *dst, const CHAR *src) { |