summaryrefslogtreecommitdiff
path: root/src/wayland-os.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wayland-os.c')
-rw-r--r--src/wayland-os.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/wayland-os.c b/src/wayland-os.c
index 8f75976..4db8050 100644
--- a/src/wayland-os.c
+++ b/src/wayland-os.c
@@ -55,13 +55,11 @@ wl_os_socket_cloexec(int domain, int type, int protocol)
{
int fd;
-#ifdef SOCK_CLOEXEC
fd = socket(domain, type | SOCK_CLOEXEC, protocol);
if (fd >= 0)
return fd;
if (errno != EINVAL)
return -1;
-#endif
fd = socket(domain, type, protocol);
return set_cloexec_or_close(fd);