ldso: move the suid/secure check code closer to env/auxv processing
[musl] / src / thread / pthread_condattr_getclock.c
1 #include "pthread_impl.h"
2
3 int pthread_condattr_getclock(const pthread_condattr_t *a, clockid_t *clk)
4 {
5         *clk = *a & 0x7fffffff;
6         return 0;
7 }