Sign in
android
/
platform
/
external
/
musl
/
3da2b5cceae98f5098e62e7865fe6433c1e82775
/
.
/
src
/
temp
/
mkostemp.c
blob: d8dcb8052da56afe647a862af2f54322b97ee0c1 [
file
] [
log
] [
blame
]
#define
_BSD_SOURCE
#include
<stdlib.h>
int
mkostemp
(
char
*
template
,
int
flags
)
{
return
__mkostemps
(
template
,
0
,
flags
);
}
weak_alias
(
mkostemp
,
mkostemp64
);