summaryrefslogtreecommitdiff
path: root/src/threads/thrd_current.c
blob: 2f2ef8600ebda9f8820e132e2605ac368ccd4a17 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <threads.h>
#include <pthread.h>

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

/*
STDC(201112)
*/