1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:17:35 +00:00

LibC: Move bzero() and bcopy() per Dr. POSIX

This commit is contained in:
Andreas Kling 2021-01-09 19:54:51 +01:00
parent 9766f61f7b
commit b4918bbe2f
6 changed files with 15 additions and 12 deletions

View file

@ -43,8 +43,6 @@ void* memmove(void*, const void*, size_t);
void* memchr(const void*, int c, size_t);
const void* memmem(const void* haystack, size_t, const void* needle, size_t);
void bzero(void*, size_t);
void bcopy(const void*, void*, size_t);
void* memset(void*, int, size_t);
__attribute__((malloc)) char* strdup(const char*);