summaryrefslogtreecommitdiffhomepage
path: root/src/thread/nt64/pthread_self.c
blob: 23fbc53e794b3eeae0b19cab1183afedc3f20a9e (plain)
1
2
3
4
5
6
7
8
9
10
#include "pthread_impl.h"
#include <threads.h>
#include "libc.h"

pthread_t pthread_self()
{
	return __pthread_self();
}

weak_alias(pthread_self, thrd_current);