summaryrefslogtreecommitdiff
path: root/lib/libc/internal/thrd/self.c
blob: b083223f1273c5a6c8d6f01ed58ea7a65908bc61 (plain)
1
2
3
4
5
6
#include <libc/tcb.h>

__attribute__((__always_inline__)) void *__libc_thread_self(void)
{
	return __libc_tcb_get();
}