13 lines
140 B
C
13 lines
140 B
C
#ifndef mythread_h__
|
|
#define mythread_h__
|
|
|
|
|
|
#include "pthread.h"
|
|
|
|
int myth_create(int (*func)(void *t),void *t);
|
|
int myth_join();
|
|
|
|
|
|
|
|
#endif
|