6 lines
84 B
C
6 lines
84 B
C
#include <pthread.h>
|
|
|
|
int pthread_equal(pthread_t a, pthread_t b)
|
|
{
|
|
return a==b;
|
|
}
|