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

LibC, LibM: Add functions needed to compile python3

This commit is contained in:
Emanuel Sprung 2019-11-11 14:08:20 +01:00 committed by Andreas Kling
parent 3042c942d8
commit e7affa24dc
7 changed files with 136 additions and 1 deletions

View file

@ -46,6 +46,7 @@ void* bsearch(const void* key, const void* base, size_t nmemb, size_t size, int
size_t mbstowcs(wchar_t*, const char*, size_t);
size_t mbtowc(wchar_t*, const char*, size_t);
int wctomb(char*, wchar_t);
size_t wcstombs(char*, const wchar_t*, size_t);
#define RAND_MAX 32767
int rand();