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