source: asp3_tinet_ecnl_arm/trunk/musl-1.1.18/src/mman/munmap.c@ 400

Last change on this file since 400 was 400, checked in by coas-nagasima, 5 years ago

ファイルヘッダーの更新

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 249 bytes
Line 
1#include <sys/mman.h>
2#include "syscall.h"
3#include "libc.h"
4
5static void dummy(void) { }
6weak_alias(dummy, __vm_wait);
7
8int __munmap(void *start, size_t len)
9{
10 __vm_wait();
11 return syscall(SYS_munmap, start, len);
12}
13
14weak_alias(__munmap, munmap);
Note: See TracBrowser for help on using the repository browser.