Sign in
mojo
/
mojo
/
de6c20aad64d53a7061c10e724e9924cfec679f6
/
.
/
fusl
/
src
/
linux
/
readahead.c
blob: 993650cb5e4bb183f449badf4a0ba9a497ab507f [
file
] [
log
] [
blame
]
#define
_GNU_SOURCE
#include
<fcntl.h>
#include
"syscall.h"
ssize_t
readahead
(
int
fd
,
off_t
pos
,
size_t
len
)
{
return
syscall
(
SYS_readahead
,
fd
,
__SYSCALL_LL_O
(
pos
),
len
);
}