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

Tiny LibC things.

This commit is contained in:
Andreas Kling 2018-11-05 14:50:41 +01:00
parent 9e62eb4856
commit 8039a20611
11 changed files with 6 additions and 2 deletions

View file

@ -18,7 +18,7 @@ char* strcat(char *dest, const char *src);
char* strncat(char *dest, const char *src, size_t);
size_t strspn(const char*, const char* accept);
size_t strcspn(const char*, const char* reject);
const char* strerror(int errnum);
char* strerror(int errnum);
__END_DECLS