1234567891011121314151617181920212223242526272829303132 |
- #include <stdio.h>
- #include <stdlib.h>
- #include <fcntl.h>
- #include "../misc/internals/tempname.h"
- int
- mkostemp (char *template, int flags)
- {
- flags -= flags & O_ACCMODE;
- return __gen_tempname (template, __GT_FILE, flags, 0, S_IRUSR | S_IWUSR);
- }
|