1 2 3 4 5 6 7 8 9 10 11 12
/* * Test for pthread_exit(). */ #include <pthread.h> int main(int argc, char * argv[]) { /* Should be the same as return 0; */ pthread_exit(0); }