remove all .size and .type directives for functions from the asm
[musl] / src / thread / x86_64 / __unmapself.s
1 /* Copyright 2011 Nicholas J. Kain, licensed GNU LGPL 2.1 or later */
2 .text
3 .global __unmapself
4 __unmapself:
5         movl $11,%eax   /* SYS_munmap */
6         syscall         /* munmap(arg2,arg3) */
7         xor %rdi,%rdi   /* exit() args: always return success */
8         movl $60,%eax   /* SYS_exit */
9         syscall         /* exit(0) */