1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
Description:
mkostemp() function: create a private temporary file, with specific opening
flags.
Files:
lib/mkostemp.c
m4/mkostemp.m4
Depends-on:
stdlib-h
extensions
largefile
tempname [test $HAVE_MKOSTEMP = 0 || test $REPLACE_MKOSTEMP = 1]
configure.ac:
gl_FUNC_MKOSTEMP
gl_CONDITIONAL([GL_COND_OBJ_MKOSTEMP],
[test $HAVE_MKOSTEMP = 0 || test $REPLACE_MKOSTEMP = 1])
AM_COND_IF([GL_COND_OBJ_MKOSTEMP], [
gl_PREREQ_MKOSTEMP
])
gl_MODULE_INDICATOR([mkostemp])
gl_STDLIB_MODULE_INDICATOR([mkostemp])
Makefile.am:
if GL_COND_OBJ_MKOSTEMP
lib_SOURCES += mkostemp.c
endif
Include:
<stdlib.h>
Link:
$(GETRANDOM_LIB)
$(CLOCK_TIME_LIB)
License:
LGPLv2+
Maintainer:
Jim Meyering
|