semtimedop: add time64 syscall support, decouple 32-bit time_t
[musl] / src / fcntl / posix_fallocate.c
index 80a65cb..c57a24a 100644 (file)
@@ -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);