summaryrefslogtreecommitdiff
path: root/libc/socket/have_sock_cloexec.c
diff options
context:
space:
mode:
authorjoseph <joseph@7b3dc134-2b1b-0410-93df-9e9f96275f8d>2008-08-19 17:24:09 +0000
committerjoseph <joseph@7b3dc134-2b1b-0410-93df-9e9f96275f8d>2008-08-19 17:24:09 +0000
commit447fd9179ef3effda7c99168c310c5e0d0e8e770 (patch)
treef90fa016ce2e15d5b509f124107ea12273ee605e /libc/socket/have_sock_cloexec.c
parent46a638ad529cc323bb7fbd02968b0770ab6626e8 (diff)
Merge changes between r6509 and r6780 from /fsf/trunk.
git-svn-id: svn://svn.eglibc.org/trunk@6785 7b3dc134-2b1b-0410-93df-9e9f96275f8d
Diffstat (limited to 'libc/socket/have_sock_cloexec.c')
-rw-r--r--libc/socket/have_sock_cloexec.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/libc/socket/have_sock_cloexec.c b/libc/socket/have_sock_cloexec.c
new file mode 100644
index 000000000..22dccdf72
--- /dev/null
+++ b/libc/socket/have_sock_cloexec.c
@@ -0,0 +1,24 @@
+/* Copyright (C) 2008 Free Software Foundation, Inc.
+ This file is part of the GNU C Library.
+
+ The GNU C Library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ The GNU C Library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with the GNU C Library; if not, write to the Free
+ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+ 02111-1307 USA. */
+
+#include <sys/socket.h>
+#include <kernel-features.h>
+
+#if defined SOCK_CLOEXEC && !defined __ASSUME_SOCK_CLOEXEC
+int __have_sock_cloexec;
+#endif