#include #include #include int main(void) { printf("Test of pthread_exit() in main thread only.\n"); pthread_exit(NULL); printf("You shouldn't see this."); exit(1); }