remove comment cruft that got left behind in x86_64 syscall.s
[musl] / src / exit / _Exit.c
1 #include <stdlib.h>
2 #define SYSCALL_NORETURN
3 #include "syscall.h"
4
5 void _Exit(int ec)
6 {
7         syscall1(__NR_exit_group, ec);
8         syscall1(__NR_exit, ec);
9 }