libc/winsup/testsuite/winsup.api/pthread/exit1.c

19 lines
229 B
C

/*
* 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;
}