aboutsummaryrefslogtreecommitdiff
path: root/include/compat/unistd.h
diff options
context:
space:
mode:
authorBrent Cook <bcook@rapid7.com>2017-01-15 04:30:41 -0600
committerBrent Cook <busterb@gmail.com>2017-01-15 16:00:16 -0600
commitdfb6b11e5a5ba21c6658d87b4df83c2a05d2deab (patch)
tree8ecf72c600ad63d8eba282b0c64cb0169451620d /include/compat/unistd.h
parentfa20dae3297fd547341021c7bda9b7a567f6a881 (diff)
downloadportable-dfb6b11e5a5ba21c6658d87b4df83c2a05d2deab.tar.gz
portable-dfb6b11e5a5ba21c6658d87b4df83c2a05d2deab.tar.bz2
portable-dfb6b11e5a5ba21c6658d87b4df83c2a05d2deab.zip
include pipe2/socketpair compat for macOS
Diffstat (limited to 'include/compat/unistd.h')
-rw-r--r--include/compat/unistd.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/compat/unistd.h b/include/compat/unistd.h
index 52255bb..14825eb 100644
--- a/include/compat/unistd.h
+++ b/include/compat/unistd.h
@@ -40,4 +40,8 @@ int getentropy(void *buf, size_t buflen);
40 40
41#define pledge(request, paths) 0 41#define pledge(request, paths) 0
42 42
43#ifndef HAVE_PIPE2
44int pipe2(int fildes[2], int flags);
45#endif
46
43#endif 47#endif