X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Ffcntl%2Fposix_fallocate.c;h=c57a24aef4d9aa7da437bac0d4ec32522c8cfc01;hb=acfe6d033eafe12d61ad91f496850b1bf58c6f98;hp=80a65cbfd62e9148336d58aec3587fe53bbfb610;hpb=5271ff46b9e983bec5fd9ab79d5aaf096fa54157;p=musl diff --git a/src/fcntl/posix_fallocate.c b/src/fcntl/posix_fallocate.c index 80a65cbf..c57a24ae 100644 --- a/src/fcntl/posix_fallocate.c +++ b/src/fcntl/posix_fallocate.c @@ -6,3 +6,5 @@ int posix_fallocate(int fd, off_t base, off_t len) return -__syscall(SYS_fallocate, fd, 0, __SYSCALL_LL_E(base), __SYSCALL_LL_E(len)); } + +weak_alias(posix_fallocate, posix_fallocate64);