diff options
author | Paul Cercueil <paul@crapouillou.net> | 2021-02-18 22:23:19 +0000 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2021-02-19 00:15:01 +0100 |
commit | 9efce41dd3bb5d721a5b771931126f32a85e1958 (patch) | |
tree | a7455ffe626745990be4a56c60980b04ea2b235b /libc/sysdeps/linux/aarch64/bits | |
parent | 0daab1508379e23a09ab7fdb469018228d951894 (diff) |
fcntl.h: Make F_DUPFD_CLOEXEC if _USE_XOPEN2K8
The F_DUPFD_CLOEXEC flag was added in POSIX 2008.09.
Signed-off-by: Paul Cercueil <paul@crapouillou.net>
Diffstat (limited to 'libc/sysdeps/linux/aarch64/bits')
-rw-r--r-- | libc/sysdeps/linux/aarch64/bits/fcntl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/aarch64/bits/fcntl.h b/libc/sysdeps/linux/aarch64/bits/fcntl.h index 80657c008..27922f602 100644 --- a/libc/sysdeps/linux/aarch64/bits/fcntl.h +++ b/libc/sysdeps/linux/aarch64/bits/fcntl.h @@ -105,9 +105,9 @@ # define F_SETPIPE_SZ 1031 /* Set pipe page size array. */ # define F_GETPIPE_SZ 1032 /* Set pipe page size array. */ #endif -#ifdef __USE_XOPEN2K8 +#if defined __USE_XOPEN2K8 || defined __USE_GNU # define F_DUPFD_CLOEXEC 1030 /* Duplicate file descriptor with - close-on-exit set. */ + close-on-exit set on new fd. */ #endif /* For F_[GET|SET]FD. */ |