mark arm thread-pointer-loading inline asm as volatile
[oweals/musl.git] / src / temp / mkostemp.c
1 #define _BSD_SOURCE
2 #include <stdlib.h>
3 #include "libc.h"
4
5 int __mkostemps(char *, int, int);
6
7 int mkostemp(char *template, int flags)
8 {
9         return __mkostemps(template, 0, flags);
10 }
11
12 LFS64(mkostemp);