X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstring%2Fstrchr.c;h=3cbc828bebf705ae570e1bfd0c2b518f929c054c;hb=0ab97350f01b42de0f9fd811ee08653169661859;hp=bfae8f9f846a01c14d288d34e8659f265a9daf2e;hpb=68dbd05039f8b256f586ed9a589645fa3a1b7f5f;p=musl 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 -char *__strchrnul(const char *, int); - char *strchr(const char *s, int c) { char *r = __strchrnul(s, c);