math: fix exp.s on i386 and x86_64 so the exception flags are correct
[musl] / src / thread / pthread_setconcurrency.c
1 #include <pthread.h>
2 #include <errno.h>
3
4 int pthread_setconcurrency(int val)
5 {
6         if (val < 0) return EINVAL;
7         if (val > 0) return EAGAIN;
8         return 0;
9 }