remove cruft for supposedly-buggy clang from or1k & microblaze syscall_arch
[musl.git] / src / thread / thrd_exit.c
blob9b291ae3db2de16b19c90f504c8e9e7102e10adb
1 #include <threads.h>
2 #include <pthread.h>
3 #include <stdint.h>
5 _Noreturn void thrd_exit(int result)
7 __pthread_exit((void*)(intptr_t)result);