blob: fda710b0d9edafc68ad2fef681e171ff87205452 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#define _BSD_SOURCE
#include <stdlib.h>
#include "libc.h"
int __mkostemps(char *, int, int);
int mkstemps(char *template, int len)
{
return __mkostemps(template, len, 0);
}
LFS64(mkstemps);
|