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

LibC: Implement mkdtemp library function

This commit is contained in:
Mauri de Souza Nunes 2019-09-12 08:43:52 -03:00 committed by Andreas Kling
parent 161cb89e87
commit 2d24b12a34
2 changed files with 32 additions and 2 deletions

View file

@ -38,6 +38,7 @@ long labs(long);
double atof(const char*);
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*));
#define RAND_MAX 32767