UNIXwork
code
/
src
/
ucx
/
make
Hide Line Numbers
Download
cc.mk
clang.mk
configure.vm
gcc.mk
install-lib-macos.sh
install-lib.sh
install-pc-file.sh
makefile.mk
project.xml
suncc.mk
test_memrchr.c
test_mkstemp.c
test_qsort_r.c
toolchain.sh
update-rules.sh
uwproj.xsd
1
#include
<stdlib.h>
2
3
static
void
test_mkstemp() {
4
char
tpl[] =
"/tmp/testXXXXXX"
;
5
int
fd = mkstemp(tpl);
6
// never called, no need to close fd
7
}
8
9
int
main() {
10
return
0
;
11
}
12