summaryrefslogtreecommitdiff
path: root/lib/libc/thread/thrd_current.c
blob: b588cc273b0bce358dbbdf92ef9388d0a9ce7427 (plain)
1
2
3
4
5
6
7
8
9
#include <__thread.h>
#include <threads.h>

thread_local struct __thread_self __thread_self;

thrd_t thrd_current(void)
{
	return &__thread_self;
}