From: Rich Felker Date: Thu, 28 Sep 2017 16:57:06 +0000 (-0400) Subject: fix use of memset without declaration in sched.h cpu set macros X-Git-Tag: v1.1.17~7 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=48be5b6313d7b827acf555769e93b389fa9f6307;p=oweals%2Fmusl.git fix use of memset without declaration in sched.h cpu set macros patch by Jörg Krause. --- diff --git a/include/sched.h b/include/sched.h index d1cccb70..05d40b1e 100644 --- a/include/sched.h +++ b/include/sched.h @@ -72,6 +72,7 @@ int setns(int, int); void *memcpy(void *__restrict, const void *__restrict, size_t); int memcmp(const void *, const void *, size_t); +void *memset (void *, int, size_t); void *calloc(size_t, size_t); void free(void *);