summaryrefslogtreecommitdiff
path: root/src/fcntl
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-05-31 23:12:31 -0400
committerRich Felker <dalias@aerifal.cx>2012-05-31 23:12:31 -0400
commita541297617e567eadc7448e1af35d7bb20461a8c (patch)
treeb1197b0f76655df1c0014563cedae8469ca84a17 /src/fcntl
parented6717277c4c5d6f3296d931d35a0f1beb73a024 (diff)
downloadmusl-a541297617e567eadc7448e1af35d7bb20461a8c.tar.gz
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.
Diffstat (limited to 'src/fcntl')
-rw-r--r--src/fcntl/fcntl.c2
1 files changed, 0 insertions, 2 deletions
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);