syslog: revert LOG_FAC/LOG_FACMASK changes
[musl.git] / src / thread / pthread_setconcurrency.c
blob091abf98c86f3e23c921f0c3e83a8ba6b58b0052
1 #include <pthread.h>
2 #include <errno.h>
4 int pthread_setconcurrency(int val)
6 if (val < 0) return EINVAL;
7 if (val > 0) return EAGAIN;
8 return 0;