[docs] Fix build-docs.sh
[llvm-project.git] / compiler-rt / test / hwasan / TestCases / pthread_exit.c
blob937e20c6ad194d29a6c533017fb841537eb3f77a
1 // Tests pthread_exit.
2 // RUN: %clang_hwasan %s -o %t && %run %t
3 // REQUIRES: stable-runtime
4 #include <pthread.h>
5 int main() { pthread_exit(NULL); }