aboutsummaryrefslogtreecommitdiff
path: root/src/temp/mkstemps.c
blob: d42c3ecf82d305e21c8f5cbbaa9b97646723bf83 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#define _BSD_SOURCE
#include <stdlib.h>

int mkstemps(char *template, int len)
{
	return __mkostemps(template, len, 0);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif