X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Ffcntl%2Fposix_fallocate.c;h=c57a24aef4d9aa7da437bac0d4ec32522c8cfc01;hb=e95538fa07d2b460b25ee6c2fef05f820888776d;hp=91d8063ca45815757bdb63478e91f85b1a4f8990;hpb=1e7a581ad6e2b03e91748dd1295288e053f86e04;p=musl diff --git a/src/fcntl/posix_fallocate.c b/src/fcntl/posix_fallocate.c index 91d8063c..c57a24ae 100644 --- a/src/fcntl/posix_fallocate.c +++ b/src/fcntl/posix_fallocate.c @@ -1,6 +1,5 @@ #include #include "syscall.h" -#include "libc.h" int posix_fallocate(int fd, off_t base, off_t len) { @@ -8,4 +7,4 @@ int posix_fallocate(int fd, off_t base, off_t len) __SYSCALL_LL_E(len)); } -LFS64(posix_fallocate); +weak_alias(posix_fallocate, posix_fallocate64);