ldso: move the suid/secure check code closer to env/auxv processing
[musl] / src / thread / pthread_equal.c
1 #include <pthread.h>
2
3 int (pthread_equal)(pthread_t a, pthread_t b)
4 {
5         return a==b;
6 }