From: Alan Cox Date: Fri, 2 Jan 2015 10:20:26 +0000 (+0000) Subject: string.h: fix bzero declaration. X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=772d67c75c11b99c3cf445be85c5d805a936aaf4;p=FUZIX.git string.h: fix bzero declaration. From: Sergio L. Pascual --- diff --git a/Library/include/string.h b/Library/include/string.h index 80dc92ae..ed3bd187 100644 --- a/Library/include/string.h +++ b/Library/include/string.h @@ -39,6 +39,7 @@ extern void * memmove __P ((void*, const void*, size_t)); extern char *index __P ((const char *, int)); extern char *rindex __P ((const char *, int)); extern void bcopy __P ((const void*, void*, size_t)); +extern void bzero __P ((void*, int)); /* Othe common BSD functions */ extern char *strpbrk __P ((const char *, const char *));