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

Some compat work towards making GCC's libstdc++ build.

This commit is contained in:
Andreas Kling 2019-02-25 10:05:32 +01:00
parent 93c0dfd1d7
commit 0b957ed2b1
9 changed files with 120 additions and 11 deletions

View file

@ -29,6 +29,9 @@ size_t strcspn(const char*, const char* reject);
char* strerror(int errnum);
char* strsignal(int signum);
char* strpbrk(const char*, const char* accept);
char *strtok(char* str, const char* delim);
int strcoll(const char *s1, const char *s2);
size_t strxfrm(char *dest, const char *src, size_t n);
__END_DECLS