diff options
Diffstat (limited to 'include/compat/sys/socket.h')
-rw-r--r-- | include/compat/sys/socket.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/compat/sys/socket.h b/include/compat/sys/socket.h index 17e84f1..10eb05f 100644 --- a/include/compat/sys/socket.h +++ b/include/compat/sys/socket.h | |||
@@ -8,3 +8,10 @@ | |||
8 | #else | 8 | #else |
9 | #include <win32netcompat.h> | 9 | #include <win32netcompat.h> |
10 | #endif | 10 | #endif |
11 | |||
12 | #if !defined(SOCK_NONBLOCK) || !defined(SOCK_CLOEXEC) | ||
13 | #define SOCK_CLOEXEC 0x8000 /* set FD_CLOEXEC */ | ||
14 | #define SOCK_NONBLOCK 0x4000 /* set O_NONBLOCK */ | ||
15 | int bsd_socketpair(int domain, int type, int protocol, int socket_vector[2]); | ||
16 | #define socketpair(d,t,p,sv) bsd_socketpair(d,t,p,sv) | ||
17 | #endif | ||