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