7 lines
198 B
C
7 lines
198 B
C
|
#pragma once
|
||
|
#include <stddef.h>
|
||
|
|
||
|
typedef unsigned long int pthread_t;
|
||
|
typedef void *(start_routine)(void *);
|
||
|
int thread_create(pthread_t *thread, start_routine *func, void *arg, size_t stackSize);
|