1Description:
2unlinkat() function: Remove a file at a directory.
3
4Files:
5lib/unlinkat.c
6lib/at-func.c
7m4/unlinkat.m4
8m4/lstat.m4
9
10Depends-on:
11unistd
12extensions
13fcntl-h         [test $HAVE_UNLINKAT = 0 || test $REPLACE_UNLINKAT = 1]
14openat-h        [test $HAVE_UNLINKAT = 0 || test $REPLACE_UNLINKAT = 1]
15sys_stat        [test $HAVE_UNLINKAT = 0 || test $REPLACE_UNLINKAT = 1]
16statat          [test $REPLACE_UNLINKAT = 1]
17at-internal     [test $HAVE_UNLINKAT = 0]
18dosname         [test $HAVE_UNLINKAT = 0]
19errno           [test $HAVE_UNLINKAT = 0]
20fchdir          [test $HAVE_UNLINKAT = 0]
21openat-die      [test $HAVE_UNLINKAT = 0]
22rmdir           [test $HAVE_UNLINKAT = 0]
23save-cwd        [test $HAVE_UNLINKAT = 0]
24unlink          [test $HAVE_UNLINKAT = 0]
25
26configure.ac:
27gl_FUNC_UNLINKAT
28if test $HAVE_UNLINKAT = 0 || test $REPLACE_UNLINKAT = 1; then
29  AC_LIBOBJ([unlinkat])
30fi
31gl_UNISTD_MODULE_INDICATOR([unlinkat])
32
33Makefile.am:
34
35Include:
36<unistd.h>
37
38License:
39GPL
40
41Maintainer:
42Jim Meyering, Eric Blake
43