1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:37:34 +00:00

Kernel: Remove strdup() since nothing uses it

This commit is contained in:
Andreas Kling 2020-08-13 20:14:13 +02:00
parent 5099e76ce6
commit b777640fef
2 changed files with 0 additions and 9 deletions

View file

@ -50,7 +50,6 @@ int strcmp(char const*, const char*);
size_t strlen(const char*);
size_t strnlen(const char*, size_t);
void* memset(void*, int, size_t);
char* strdup(const char*);
int memcmp(const void*, const void*, size_t);
char* strrchr(const char* str, int ch);
void* memmove(void* dest, const void* src, size_t n);