Rich Felker | 2cc6335 | 2013-02-20 22:43:23 -0500 | [diff] [blame] | 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); |