/* vi: set sw=4 ts=4: */ /* * munmap() for uClibc * * Copyright (C) 2000-2004 by Erik Andersen * * GNU Library General Public License (LGPL) version 2 or later. */ #include "syscalls.h" #include #include #define __NR___munmap __NR_munmap attribute_hidden _syscall2(int, __munmap, void *, start, size_t, length); strong_alias(__munmap,munmap)