about summary refs log tree commit diff
path: root/src/string/strchr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/strchr.c')
-rw-r--r--src/string/strchr.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/string/strchr.c b/src/string/strchr.c
index bfae8f9f..3cbc828b 100644
--- a/src/string/strchr.c
+++ b/src/string/strchr.c
@@ -1,7 +1,5 @@
 #include <string.h>
 
-char *__strchrnul(const char *, int);
-
 char *strchr(const char *s, int c)
 {
 	char *r = __strchrnul(s, c);