From eb8a5ab3530f677c223d5cda5598c6d50a242b1b Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Wed, 16 Mar 2011 20:23:02 +0100 Subject: move __getdents[64] prototypes to dirent.h Signed-off-by: Peter S. Mazinger Signed-off-by: Bernhard Reutner-Fischer --- libc/sysdeps/linux/common/getdents64.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libc/sysdeps/linux/common/getdents64.c') diff --git a/libc/sysdeps/linux/common/getdents64.c b/libc/sysdeps/linux/common/getdents64.c index 30686f25a..1e1e170b9 100644 --- a/libc/sysdeps/linux/common/getdents64.c +++ b/libc/sysdeps/linux/common/getdents64.c @@ -36,7 +36,6 @@ struct kernel_dirent64 # define __NR___syscall_getdents64 __NR_getdents64 static __inline__ _syscall3(int, __syscall_getdents64, int, fd, unsigned char *, dirp, size_t, count) -ssize_t __getdents64 (int fd, char *buf, size_t nbytes) attribute_hidden; ssize_t __getdents64 (int fd, char *buf, size_t nbytes) { struct dirent64 *dp; @@ -99,7 +98,7 @@ ssize_t __getdents64 (int fd, char *buf, size_t nbytes) #if __WORDSIZE == 64 /* since getdents doesnt give us d_type but getdents64 does, try and * use getdents64 as much as possible */ -attribute_hidden strong_alias(__getdents64,__getdents) +strong_alias(__getdents64,__getdents) #endif #endif -- cgit v1.2.3