From 972577b61e09d1c60dffc3f28bc76dbf35b73e36 Mon Sep 17 00:00:00 2001 From: cinap_lenrek Date: Sun, 7 Dec 2014 14:26:41 +0100 Subject: [PATCH] strcat(2): fix strchr() and strrchr() function prototypes (thanks BurnZeZ) --- sys/man/2/strcat | 4 ++-- 1 file 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)