Sign in
mojo
/
mojo-tools
/
c200560ac45a79b61b8e8c0444af471789f5669f
/
.
/
fusl
/
src
/
temp
/
mkstemp.c
blob: edf22db22819d8a3acdc1c845159d8c52c2adfc5 [
file
]
#include
<stdlib.h>
#include
"libc.h"
int
__mkostemps
(
char
*,
int
,
int
);
int
mkstemp
(
char
*
template
)
{
return
__mkostemps
(
template
,
0
,
0
);
}