fn posix_fallocateLinux(fd: c_int, offset: off_t, len: off_t) callconv(.c) c_int
fn posix_fallocateLinux(fd: c_int, offset: off_t, len: off_t) callconv(.c) c_int { return errno(linux.fallocate(fd, 0, offset, len)); }