summaryrefslogtreecommitdiff
path: root/tests/exit2.c
blob: 48ad5d09375fe70ff7bddb1a69215976cdec66da (plain)
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);
}