strtoumax: fix typo in previous commit.
[gnulib.git] / modules / renameat
1 Description:
2 renameat() function: rename a file, relative to two directories
3
4 Files:
5 lib/at-func2.c
6 lib/renameat.c
7 m4/renameat.m4
8
9 Depends-on:
10 stdio
11 extensions
12 fcntl-h
13 filenamecat-lgpl [test $HAVE_RENAMEAT = 0 || test $REPLACE_RENAMEAT = 1]
14 openat-h         [test $HAVE_RENAMEAT = 0 || test $REPLACE_RENAMEAT = 1]
15 statat           [test $REPLACE_RENAMEAT = 1]
16 stdbool          [test $REPLACE_RENAMEAT = 1]
17 at-internal      [test $HAVE_RENAMEAT = 0]
18 dosname          [test $HAVE_RENAMEAT = 0]
19 getcwd-lgpl      [test $HAVE_RENAMEAT = 0]
20 openat-die       [test $HAVE_RENAMEAT = 0]
21 rename           [test $HAVE_RENAMEAT = 0]
22 same-inode       [test $HAVE_RENAMEAT = 0]
23 save-cwd         [test $HAVE_RENAMEAT = 0]
24
25 configure.ac:
26 gl_FUNC_RENAMEAT
27 if test $HAVE_RENAMEAT = 0 || test $REPLACE_RENAMEAT = 1; then
28   AC_LIBOBJ([renameat])
29 fi
30 if test $HAVE_RENAMEAT = 0; then
31   AC_LIBOBJ([at-func2])
32 fi
33 gl_STDIO_MODULE_INDICATOR([renameat])
34
35 Makefile.am:
36
37 Include:
38 <fcntl.h>
39 <stdio.h>
40
41 License:
42 GPL
43
44 Maintainer:
45 Jim Meyering, Eric Blake