summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/munmap.c
blob: be631060aa66fd3eac6e695683a6391456bb866f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* vi: set sw=4 ts=4: */
/*
 * munmap() for uClibc
 *
 * Copyright (C) 2000-2004 by Erik Andersen <andersen@codepoet.org>
 *
 * GNU Library General Public License (LGPL) version 2 or later.
 */

#include "syscalls.h"
#include <unistd.h>
#include <sys/mman.h>
#define __NR___munmap __NR_munmap
attribute_hidden _syscall2(int, __munmap, void *, start, size_t, length);
strong_alias(__munmap,munmap)