Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
temp
mkstemp.c
pretty
plain
permalink
blame
history
•
6 lines
•
90 B
1
#include <stdlib.h>
2
3
int mkstemp(char *template)
4
{
5
	return __mkostemps(template, 0, 0);
6
}