aboutsummaryrefslogtreecommitdiff
path: root/src/thread/pthread_getconcurrency.c
blob: ed2ddc11f12d4fa300c31f289f26d6c831dec574 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <pthread.h>

int pthread_getconcurrency()
{
	return 0;
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif