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
/
munmap.c
blob
7f583be35878ae494b301aeff4e3befac90147d9
1
/* This is a system call. We only have to provide the wrapper. */
2
#include <sys/mman.h>
3
4
int
5
__munmap
(
void
*
addr
,
size_t
len
)
6
{
7
return
munmap
(
addr
,
len
);
8
}