From 147041d26029fabdb35b596a1d3bcbb40c3de975 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Wed, 25 Feb 2009 11:06:29 +0000 Subject: Reinstate __libc_foo's needed for linuxthreads.old. Now they are only enabled if linuxthreads.old are selected. --- libc/sysdeps/linux/common/__syscall_fcntl.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'libc/sysdeps/linux/common/__syscall_fcntl.c') diff --git a/libc/sysdeps/linux/common/__syscall_fcntl.c b/libc/sysdeps/linux/common/__syscall_fcntl.c index 8b896b4f7..355b22b00 100644 --- a/libc/sysdeps/linux/common/__syscall_fcntl.c +++ b/libc/sysdeps/linux/common/__syscall_fcntl.c @@ -38,7 +38,12 @@ int fcntl(int fd, int cmd, ...) return (__syscall_fcntl(fd, cmd, arg)); } +#ifndef __LINUXTHREADS_OLD__ libc_hidden_def(fcntl) +#else +libc_hidden_weak(fcntl) +strong_alias(fcntl,__libc_fcntl) +#endif #if ! defined __NR_fcntl64 && defined __UCLIBC_HAS_LFS__ strong_alias(fcntl,fcntl64) -- cgit v1.2.3