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

thrd_t thrd_current(void)
{
	return __libc_thread_self();
}