mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:07:35 +00:00
LibC: Add a missing mbstowcs() declaration
This ensures it gets a C linkage, and so fixes the binutils build.
This commit is contained in:
parent
475c6d7112
commit
b4389ca4b0
1 changed files with 1 additions and 0 deletions
|
@ -43,6 +43,7 @@ int system(const char* command);
|
|||
char* mktemp(char*);
|
||||
char* mkdtemp(char*);
|
||||
void* bsearch(const void* key, const void* base, size_t nmemb, size_t size, int (*compar)(const void*, const void*));
|
||||
size_t mbstowcs(wchar_t*, const char*, size_t);
|
||||
|
||||
#define RAND_MAX 32767
|
||||
int rand();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue