diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-04-18 17:48:53 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-04-19 15:50:45 -0400 |
commit | 71f822ec2bf8c41f782f154d87b7b415a530dd03 (patch) | |
tree | b1090b031c79f2bff839538da391d8ba31ec784a /config/pipe2.c | |
parent | d7130b3eee3e59f2e5475bbac5695cee54310c20 (diff) | |
download | bfs-71f822ec2bf8c41f782f154d87b7b415a530dd03.tar.xz |
config: Check for pipe2()
Diffstat (limited to 'config/pipe2.c')
-rw-r--r-- | config/pipe2.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/config/pipe2.c b/config/pipe2.c new file mode 100644 index 0000000..4cb43b5 --- /dev/null +++ b/config/pipe2.c @@ -0,0 +1,10 @@ +// Copyright © Tavian Barnes <tavianator@tavianator.com> +// SPDX-License-Identifier: 0BSD + +#include <fcntl.h> +#include <unistd.h> + +int main(void) { + int fds[2]; + return pipe2(fds, O_CLOEXEC); +} |