Sign in
mojo
/
mojo
/
de6c20aad64d53a7061c10e724e9924cfec679f6
/
.
/
fusl
/
src
/
mman
/
madvise.c
blob: d3d6a7b9fc7ffccf19238e3c9808cc7dc910c41d [
file
] [
log
] [
blame
]
#include
<sys/mman.h>
#include
"syscall.h"
#include
"libc.h"
int
__madvise
(
void
*
addr
,
size_t
len
,
int
advice
)
{
return
syscall
(
SYS_madvise
,
addr
,
len
,
advice
);
}
weak_alias
(
__madvise
,
madvise
);