blob: c05a45422b2ae60f6844d5c4de6483b8e5adb5e6 [file] [log] [blame]
#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);
}