Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
linux
/
readahead.c
blob: 5c70bfd6e1aa787f3e3b162f75bdb45332c34950 [
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
);
}