aboutsummaryrefslogtreecommitdiff
path: root/src/thread/pthread_equal.c
blob: d1507b8ac6ccc01e59bcf3ca5c36ea305ee3ddc5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <pthread.h>
#include <threads.h>

static int __pthread_equal(pthread_t a, pthread_t b)
{
	return a==b;
}

weak_alias(__pthread_equal, pthread_equal);
weak_alias(__pthread_equal, thrd_equal);


#ifdef TEST
int
main(void) {
	return 0;
}
#endif