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 /src/bfstd.c | |
parent | d7130b3eee3e59f2e5475bbac5695cee54310c20 (diff) | |
download | bfs-71f822ec2bf8c41f782f154d87b7b415a530dd03.tar.xz |
config: Check for pipe2()
Diffstat (limited to 'src/bfstd.c')
-rw-r--r-- | src/bfstd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bfstd.c b/src/bfstd.c index 3eff024..e2c2b97 100644 --- a/src/bfstd.c +++ b/src/bfstd.c @@ -489,7 +489,7 @@ int dup_cloexec(int fd) { } int pipe_cloexec(int pipefd[2]) { -#if __linux__ || (BSD && !__APPLE__) +#if BFS_HAS_PIPE2 return pipe2(pipefd, O_CLOEXEC); #else if (pipe(pipefd) != 0) { |