1Description:
2Support for fcntl() action F_DUPFD, F_DUPFD_CLOEXEC, F_GETFD.
3
4Files:
5m4/fcntl.m4
6lib/fcntl.c
7
8Depends-on:
9fcntl-h
10extensions
11close           [test $HAVE_FCNTL = 0 || test $REPLACE_FCNTL = 1]
12dup2            [test $HAVE_FCNTL = 0 || test $REPLACE_FCNTL = 1]
13getdtablesize   [test $HAVE_FCNTL = 0 || test $REPLACE_FCNTL = 1]
14msvc-nothrow    [test $HAVE_FCNTL = 0 || test $REPLACE_FCNTL = 1]
15
16configure.ac:
17gl_FUNC_FCNTL
18if test $HAVE_FCNTL = 0 || test $REPLACE_FCNTL = 1; then
19  AC_LIBOBJ([fcntl])
20fi
21gl_FCNTL_MODULE_INDICATOR([fcntl])
22
23Makefile.am:
24
25Include:
26<fcntl.h>
27
28License:
29LGPLv2+
30
31Maintainer:
32Eric Blake
33