diff options
Diffstat (limited to '')
-rw-r--r-- | src/system/fd_util.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/system/fd_util.h b/src/system/fd_util.h index b7a9a6dd3..f4a940e91 100644 --- a/src/system/fd_util.h +++ b/src/system/fd_util.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2011 The Music Player Daemon Project + * Copyright (C) 2003-2014 The Music Player Daemon Project * http://www.musicpd.org * * Redistribution and use in source and binary forms, with or without @@ -42,10 +42,6 @@ #include <stddef.h> #ifndef WIN32 -#if !defined(_GNU_SOURCE) && (defined(HAVE_PIPE2) || defined(HAVE_ACCEPT4)) -#define _GNU_SOURCE -#endif - #include <sys/types.h> #endif @@ -55,6 +51,9 @@ struct sockaddr; extern "C" { #endif +int +fd_set_cloexec(int fd, bool enable); + /** * Wrapper for dup(), which sets the CLOEXEC flag on the new * descriptor. |