summaryrefslogtreecommitdiff
path: root/tests/exit1.c
blob: 251a46c5856a4ddb33b93b02da8975f97415863a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Test for pthread_exit().
 *
 * Depends on API functions: None.
 */

#include "test.h"

int
main(int argc, char * argv[])
{
	/* A simple test first. */
	pthread_exit((void *) 0);

	/* Not reached */
	assert(0);
}