make pthread attribute types structs, even when they just have one field
[musl] / src / unistd / _exit.c
1 #include <unistd.h>
2 #include <stdlib.h>
3
4 _Noreturn void _exit(int status)
5 {
6         _Exit(status);
7 }