Sign in
mojo
/
mojo
/
ed4bdf2b045dcf76699eb5095f037df4b8750a28
/
.
/
fusl
/
src
/
temp
/
mkstemps.c
blob: fda710b0d9edafc68ad2fef681e171ff87205452 [
file
] [
log
] [
blame
]
#define
_BSD_SOURCE
#include
<stdlib.h>
#include
"libc.h"
int
__mkostemps
(
char
*,
int
,
int
);
int
mkstemps
(
char
*
template
,
int
len
)
{
return
__mkostemps
(
template
,
len
,
0
);
}
LFS64
(
mkstemps
);