repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
eliminate protected-visibility data in libc.so with vis.h preinclude
[musl.git]
/
src
/
temp
/
mkstemps.c
blob
fda710b0d9edafc68ad2fef681e171ff87205452
1
#define _BSD_SOURCE
2
#include <stdlib.h>
3
#include
"libc.h"
4
5
int
__mkostemps
(
char
*,
int
,
int
);
6
7
int
mkstemps
(
char
*
template
,
int
len
)
8
{
9
return
__mkostemps
(
template
,
len
,
0
);
10
}
11
12
LFS64
(
mkstemps
);