1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 18:57:34 +00:00

Add memcpy() and strcmp() to LibC.

This commit is contained in:
Andreas Kling 2018-10-26 13:32:13 +02:00
parent 0af9254812
commit ac738b03d6
2 changed files with 19 additions and 0 deletions

View file

@ -5,6 +5,8 @@
extern "C" {
size_t strlen(const char*);
int strcmp(const char*, const char*);
void memcpy(void*, const void*, size_t);
const char* strerror(int errnum);
}