31 lines
450 B
Plaintext
31 lines
450 B
Plaintext
Description:
|
|
mkdir() function: create a directory.
|
|
|
|
Files:
|
|
lib/mkdir.c
|
|
m4/mkdir.m4
|
|
|
|
Depends-on:
|
|
sys_stat
|
|
dirname-lgpl [test $REPLACE_MKDIR = 1]
|
|
stat [test $REPLACE_MKDIR = 1]
|
|
|
|
configure.ac:
|
|
gl_FUNC_MKDIR
|
|
gl_CONDITIONAL([GL_COND_OBJ_MKDIR], [test $REPLACE_MKDIR = 1])
|
|
gl_SYS_STAT_MODULE_INDICATOR([mkdir])
|
|
|
|
Makefile.am:
|
|
if GL_COND_OBJ_MKDIR
|
|
lib_SOURCES += mkdir.c
|
|
endif
|
|
|
|
Include:
|
|
<sys/stat.h>
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Maintainer:
|
|
Jim Meyering
|