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:
parent
0af9254812
commit
ac738b03d6
2 changed files with 19 additions and 0 deletions
|
@ -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);
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue