xref: /llvm-project/compiler-rt/test/hwasan/TestCases/pthread_exit.c (revision fdac98a7f3bbe0cb553df60df8cca2e8f407fa51)
1 // Tests pthread_exit.
2 // RUN: %clang_hwasan %s -o %t && %run %t
3 
4 #include <pthread.h>
main()5 int main() { pthread_exit(NULL); }
6