mirror of
https://github.com/AntelopeIO/cdt-musl.git
synced 2026-07-21 13:53:40 +00:00
10 lines
157 B
C
10 lines
157 B
C
#pragma once
|
|
|
|
typedef struct pthread* pthread_t;
|
|
|
|
static inline struct pthread *__pthread_self()
|
|
{
|
|
static struct pthread self = { 0 };
|
|
return &self;
|
|
}
|