From 772d67c75c11b99c3cf445be85c5d805a936aaf4 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Fri, 2 Jan 2015 10:20:26 +0000 Subject: [PATCH] string.h: fix bzero declaration. From: Sergio L. Pascual --- Library/include/string.h | 1 + 1 file changed, 1 insertion(+) 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 *)); -- 2.34.1