From 3b9d1b83ab792b0e0b574069924287364e91a723 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Tue, 26 Aug 2008 21:51:04 +0000 Subject: fix string function prototypes in libpayload according to sysv/4.3bsd. Discussed on IRC, trivial Signed-off-by: Stefan Reinauer Acked-by: Stefan Reinauer git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3539 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- payloads/libpayload/libc/string.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'payloads/libpayload/libc/string.c') diff --git a/payloads/libpayload/libc/string.c b/payloads/libpayload/libc/string.c index e86f2c924a..85315b13ea 100644 --- a/payloads/libpayload/libc/string.c +++ b/payloads/libpayload/libc/string.c @@ -116,7 +116,7 @@ int strcmp(const char *s1, const char *s2) * @param maxlen Return at most maxlen characters as length of the string. * @return A non-zero value if s1 and s2 differ, or zero if s1 equals s2. */ -int strncmp(const char *s1, const char *s2, int maxlen) +int strncmp(const char *s1, const char *s2, size_t maxlen) { int i; @@ -128,7 +128,7 @@ int strncmp(const char *s1, const char *s2, int maxlen) return 0; } -char *strncpy(char *d, const char *s, int n) +char *strncpy(char *d, const char *s, size_t n) { /* Use +1 to get the NUL terminator. */ int max = n > strlen(s) + 1 ? strlen(s) + 1 : n; @@ -145,7 +145,7 @@ char *strcpy(char *d, const char *s) return strncpy(d, s, strlen(s) + 1); } -char *strncat(char *d, const char *s, int n) +char *strncat(char *d, const char *s, size_t n) { char *p = d + strlen(d); int max = n > strlen(s) ? strlen(s) : n; -- cgit v1.2.3