rework langinfo code for ABI compat and for use by time code
[musl] / src / thread / pthread_attr_setinheritsched.c
1 #include "pthread_impl.h"
2
3 int pthread_attr_setinheritsched(pthread_attr_t *a, int inherit)
4 {
5         if (inherit > 1U) return EINVAL;
6         a->_a_sched = inherit;
7         return 0;
8 }