X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Ffcntl%2Fposix_fallocate.c;h=91d8063ca45815757bdb63478e91f85b1a4f8990;hb=ebd8ef50d5012733d86ed4a6834ca6d776b069ae;hp=80a65cbfd62e9148336d58aec3587fe53bbfb610;hpb=5271ff46b9e983bec5fd9ab79d5aaf096fa54157;p=musl diff --git a/src/fcntl/posix_fallocate.c b/src/fcntl/posix_fallocate.c index 80a65cbf..91d8063c 100644 --- a/src/fcntl/posix_fallocate.c +++ b/src/fcntl/posix_fallocate.c @@ -1,8 +1,11 @@ #include #include "syscall.h" +#include "libc.h" 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)); } + +LFS64(posix_fallocate);