X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Flinux%2Ffallocate.c;h=9146350e3c7f0e1c8727b9ff7813520681a03840;hb=246f1c811448f37a44b41cd8df8d0ef9736d95f4;hp=7d68bc8f64f6e5c8d1e62148f560d6904fd52fd8;hpb=dec8f0a4fa7aa533c843e6eaec862be674ff3a1a;p=musl diff --git a/src/linux/fallocate.c b/src/linux/fallocate.c index 7d68bc8f..9146350e 100644 --- a/src/linux/fallocate.c +++ b/src/linux/fallocate.c @@ -7,6 +7,3 @@ int fallocate(int fd, int mode, off_t base, off_t len) return syscall(SYS_fallocate, fd, mode, __SYSCALL_LL_E(base), __SYSCALL_LL_E(len)); } - -#undef fallocate64 -weak_alias(fallocate, fallocate64);