aboutsummaryrefslogtreecommitdiff
path: root/string/test-strrchr.c
diff options
context:
space:
mode:
Diffstat (limited to 'string/test-strrchr.c')
-rw-r--r--string/test-strrchr.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/string/test-strrchr.c b/string/test-strrchr.c
index a610200..bf4decb 100644
--- a/string/test-strrchr.c
+++ b/string/test-strrchr.c
@@ -42,11 +42,10 @@
#endif
typedef CHAR *(*proto_t) (const CHAR *, int);
-CHAR *SIMPLE_STRRCHR (const CHAR *, int);
-IMPL (SIMPLE_STRRCHR, 0)
IMPL (STRRCHR, 1)
+/* Naive implementation to verify results. */
CHAR *
SIMPLE_STRRCHR (const CHAR *s, int c)
{