repo.or.cz
/
glibc-ports.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
.
[glibc-ports.git]
/
sysdeps
/
unix
/
sysv
/
aix
/
mmap.c
blob
cd967d36bc014a2ccb831ef4b61c65aa5f1c4ed4
1
/* This is a system call. We only have to provide the wrapper. */
2
#include <sys/mman.h>
3
#include <sys/types.h>
4
5
void
*
6
__mmap
(
void
*
addr
,
size_t
len
,
int
prot
,
int
flags
,
int
fd
,
off_t offset
)
7
{
8
return
mmap
(
addr
,
len
,
prot
,
flags
,
fd
,
offset
);
9
}