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

static pthread_t __pthread_self_internal()
{
	return __pthread_self();
}

weak_alias(__pthread_self_internal, pthread_self);
weak_alias(__pthread_self_internal, thrd_current);


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