15 lines
236 B
C
15 lines
236 B
C
#ifndef _LIBC_PTHREAD_H
|
|
#define _LIBC_PTHREAD_H
|
|
|
|
#include <bits/thread.h>
|
|
#include <sys/_structs.h>
|
|
#include <sys/cdefs.h>
|
|
#include <sys/types.h>
|
|
|
|
__BEGIN_DECLS
|
|
|
|
int pthread_create(void* func);
|
|
|
|
__END_DECLS
|
|
|
|
#endif /* _LIBC_PTHREAD_H */ |