Skip to content
Snippets Groups Projects
Commit 351c4358 authored by Dan Gohman's avatar Dan Gohman
Browse files

Add a declaration for `posix_fadvise64` on Linux.

As with the other *64 functions in Linux, `posix_fadvise64` is like
`posix_fadvise` but uses `off64_t` instead of `off_t`.
parent f3bc8363
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