diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2008-08-26 21:51:04 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2008-08-26 21:51:04 +0000 |
commit | 3b9d1b83ab792b0e0b574069924287364e91a723 (patch) | |
tree | 8ccab1f70d6d20fb980decfc6158b509616da6a1 /payloads/libpayload/include | |
parent | 54ec0afc1c5fa711d94e5e22b05f3bd7abfaab72 (diff) |
fix string function prototypes in libpayload according to sysv/4.3bsd.
Discussed on IRC, trivial
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3539 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'payloads/libpayload/include')
-rw-r--r-- | payloads/libpayload/include/libpayload.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/payloads/libpayload/include/libpayload.h b/payloads/libpayload/include/libpayload.h index b58632a42f..0757740eaf 100644 --- a/payloads/libpayload/include/libpayload.h +++ b/payloads/libpayload/include/libpayload.h @@ -214,10 +214,10 @@ u8 *sha1(const u8 *data, size_t len, u8 *buf); size_t strnlen(const char *str, size_t maxlen); size_t strlen(const char *str); int strcmp(const char *s1, const char *s2); -int strncmp(const char *s1, const char *s2, int maxlen); -char *strncpy(char *d, const char *s, int n); +int strncmp(const char *s1, const char *s2, size_t maxlen); +char *strncpy(char *d, const char *s, size_t n); char *strcpy(char *d, const char *s); -char *strncat(char *d, const char *s, int n); +char *strncat(char *d, const char *s, size_t n); char *strchr(const char *s, int c); char *strdup(const char *s); char *strstr(const char *h, const char *n); |