From a541297617e567eadc7448e1af35d7bb20461a8c Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Thu, 31 May 2012 23:12:31 -0400 Subject: enable LARGEFILE64 aliases these will NOT be used when compiling with -D_LARGEFILE64_SOURCE on musl; instead, they exist in the hopes of eventually being able to run some glibc-linked apps with musl sitting in place of glibc. also remove the (apparently incorrect) fcntl alias. --- src/fcntl/fcntl.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/fcntl/fcntl.c') diff --git a/src/fcntl/fcntl.c b/src/fcntl/fcntl.c index cc3d6cce..fa5ad32f 100644 --- a/src/fcntl/fcntl.c +++ b/src/fcntl/fcntl.c @@ -16,5 +16,3 @@ int fcntl(int fd, int cmd, ...) if (cmd == F_GETOWN) return __syscall(SYS_fcntl, fd, cmd, arg); return syscall(SYS_fcntl, fd, cmd, arg); } - -LFS64(fcntl); -- cgit v1.2.1