31 lines
454 B
Plaintext
31 lines
454 B
Plaintext
Description:
|
|
remove() function: remove a file or directory
|
|
|
|
Files:
|
|
lib/remove.c
|
|
m4/remove.m4
|
|
|
|
Depends-on:
|
|
stdio
|
|
rmdir [test $REPLACE_REMOVE = 1]
|
|
unlink [test $REPLACE_REMOVE = 1]
|
|
|
|
configure.ac:
|
|
gl_FUNC_REMOVE
|
|
gl_CONDITIONAL([GL_COND_OBJ_REMOVE], [test $REPLACE_REMOVE = 1])
|
|
gl_STDIO_MODULE_INDICATOR([remove])
|
|
|
|
Makefile.am:
|
|
if GL_COND_OBJ_REMOVE
|
|
lib_SOURCES += remove.c
|
|
endif
|
|
|
|
Include:
|
|
<stdio.h>
|
|
|
|
License:
|
|
LGPL
|
|
|
|
Maintainer:
|
|
Eric Blake
|