#include #include "libc.h" int __open_tempfile (char *, int, int); int mkstemp(char *template) { return __open_tempfile (template, 0, O_RDWR); } LFS64(mkstemp);