#include <pthread.h>
#include <stdio.h>

void* new_thread(void* arg) { return(NULL); }

main()
{
	pthread_t thread;

	if (pthread_create(&thread, NULL, new_thread, (void *)0))
		printf("Error: creating new thread\n");
	pthread_exit(NULL);
}