1
0

pthread_equal.c 86 B

123456
  1. #include <pthread.h>
  2. int (pthread_equal)(pthread_t a, pthread_t b)
  3. {
  4. return a==b;
  5. }