diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-12-07 14:26:41 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-12-07 14:26:41 +0100 |
commit | 972577b61e09d1c60dffc3f28bc76dbf35b73e36 (patch) | |
tree | 158a6a2cbb4e7b7bc3ecc8181da92c082046584a | |
parent | 1fe69754b6e51dbdcbcc7846e870386a6cf2a6e6 (diff) |
strcat(2): fix strchr() and strrchr() function prototypes (thanks BurnZeZ)
-rw-r--r-- | sys/man/2/strcat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/man/2/strcat b/sys/man/2/strcat index 57bd38e4a..619243a43 100644 --- a/sys/man/2/strcat +++ b/sys/man/2/strcat @@ -38,10 +38,10 @@ char* strncpy(char *s1, char *s2, long n) long strlen(char *s) .PP .B -char* strchr(char *s, char c) +char* strchr(char *s, int c) .PP .B -char* strrchr(char *s, char c) +char* strrchr(char *s, int c) .PP .B char* strpbrk(char *s1, char *s2) |