diff options
Diffstat (limited to 'string/test-strcpy.c')
-rw-r--r-- | string/test-strcpy.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/string/test-strcpy.c b/string/test-strcpy.c index 83b7707..7e7d10a 100644 --- a/string/test-strcpy.c +++ b/string/test-strcpy.c @@ -54,11 +54,9 @@ # define STRCPY wcscpy # endif -CHAR *SIMPLE_STRCPY (CHAR *, const CHAR *); - -IMPL (SIMPLE_STRCPY, 0) IMPL (STRCPY, 1) +/* Naive implementation to verify results. */ CHAR * SIMPLE_STRCPY (CHAR *dst, const CHAR *src) { |