summaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorAustin Foxley <austinf@cetoncorp.com>2010-04-25 22:06:36 -0700
committerAustin Foxley <austinf@cetoncorp.com>2010-04-25 22:08:02 -0700
commit00891d9cf07efd992023f255164bba93d657ece4 (patch)
tree6196e92a8f0e62045515dc23f5cd783c932dfd0e /libc
parente5add5dd0d7cf87c6cd0cac246e79f617c41362b (diff)
enable building __fcntl_nocancel, as it used unconditionally now
also sync up not-cancel.h headers between all three thread libraries Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libc')
-rw-r--r--libc/sysdeps/linux/common/__syscall_fcntl.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/common/__syscall_fcntl.c b/libc/sysdeps/linux/common/__syscall_fcntl.c
index 4e3bc23df..5da3c5f32 100644
--- a/libc/sysdeps/linux/common/__syscall_fcntl.c
+++ b/libc/sysdeps/linux/common/__syscall_fcntl.c
@@ -19,7 +19,6 @@
extern __typeof(fcntl) __libc_fcntl;
libc_hidden_proto(__libc_fcntl)
-#ifdef __UCLIBC_HAS_THREADS_NATIVE__
int __fcntl_nocancel (int fd, int cmd, ...)
{
va_list ap;
@@ -41,7 +40,6 @@ int __fcntl_nocancel (int fd, int cmd, ...)
# endif
return INLINE_SYSCALL (fcntl, 3, fd, cmd, arg);
}
-#endif
int __libc_fcntl (int fd, int cmd, ...)
{