Welcome to mirror list, hosted at ThFree Co, Russian Federation.

exit1.c « pthread « winsup.api « testsuite « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 06b7692deeaaca829ef5d5de388731dbd6abe0da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * 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);
	return 0;
}