From f5773054ef6420f52887bfa2c8dd1a40423e2187 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Fri, 27 Feb 2009 22:51:07 +0000 Subject: fix breakage in x86_64 defconfig --- libc/sysdeps/linux/common/stat.c | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) (limited to 'libc/sysdeps/linux/common/stat.c') diff --git a/libc/sysdeps/linux/common/stat.c b/libc/sysdeps/linux/common/stat.c index d563bcd88..a6ab291f2 100644 --- a/libc/sysdeps/linux/common/stat.c +++ b/libc/sysdeps/linux/common/stat.c @@ -7,19 +7,11 @@ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. */ -/* need to hide the 64bit prototype or the strong_alias() - * will fail when __NR_stat64 doesnt exist */ -#define stat64 __hidestat64 - #include #include #include #include "xstatconv.h" -#undef stat64 - -/* libc_hidden_proto(stat) */ - #define __NR___syscall_stat __NR_stat #undef stat static __inline__ _syscall2(int, __syscall_stat, @@ -39,8 +31,6 @@ int stat(const char *file_name, struct stat *buf) libc_hidden_def(stat) #if ! defined __NR_stat64 && defined __UCLIBC_HAS_LFS__ -extern __typeof(stat) stat64; -/* libc_hidden_proto(stat64) */ -strong_alias(stat,stat64) +strong_alias_untyped(stat,stat64) libc_hidden_def(stat64) #endif -- cgit v1.2.3