remove all .size and .type directives for functions from the asm
[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 }