diff options
Diffstat (limited to 'sys/include/ape/stdlib.h')
-rw-r--r-- | sys/include/ape/stdlib.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/include/ape/stdlib.h b/sys/include/ape/stdlib.h index 03fbb88c4..896439723 100644 --- a/sys/include/ape/stdlib.h +++ b/sys/include/ape/stdlib.h @@ -49,6 +49,10 @@ extern int wctomb(char *, wchar_t); extern size_t mbstowcs(wchar_t *, const char *, size_t); extern size_t wcstombs(char *, const wchar_t *, size_t); +#ifdef _POSIX_C_SOURCE +extern int mkstemp(char *template); +#endif + #ifdef __cplusplus } #endif |