Various stubs while trying to get an old coreutils to build.

This commit is contained in:
Andreas Kling 2018-11-17 15:56:09 +01:00
commit 303577df16
Notes: sideshowbarker 2024-07-19 16:09:53 +09:00
20 changed files with 132 additions and 23 deletions

View file

@ -9,8 +9,8 @@ size_t strlen(const char*);
int strcmp(const char*, const char*);
int strncmp(const char*, const char*, size_t);
int memcmp(const void*, const void*, size_t);
void memcpy(void*, const void*, size_t);
void memmove(void*, const void*, size_t);
void* memcpy(void*, const void*, size_t);
void* memmove(void*, const void*, size_t);
void bzero(void*, size_t);
void bcopy(const void*, void*, size_t);
void* memset(void*, int, size_t);