Skip to content
Snippets Groups Projects
Unverified Commit e2027420 authored by Yuki Okushi's avatar Yuki Okushi Committed by GitHub
Browse files

Merge pull request #1827 from sunfishcode/linux-fadvise64

Add a declaration for `posix_fadvise64` on Linux.
parents f3bc8363 351c4358
No related branches found
No related tags found
No related merge requests found
......@@ -1316,6 +1316,12 @@ extern "C" {
len: ::off_t,
advise: ::c_int,
) -> ::c_int;
pub fn posix_fadvise64(
fd: ::c_int,
offset: ::off64_t,
len: ::off64_t,
advise: ::c_int,
) -> ::c_int;
pub fn futimens(fd: ::c_int, times: *const ::timespec) -> ::c_int;
pub fn utimensat(
dirfd: ::c_int,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment