blob: 937e20c6ad194d29a6c533017fb841537eb3f77a [file] [log] [blame]
// Tests pthread_exit.
// RUN: %clang_hwasan %s -o %t && %run %t
// REQUIRES: stable-runtime
#include <pthread.h>
int main() { pthread_exit(NULL); }