Files
cdt-musl/arch/eos/pthread_arch.h
T

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;
}