1#ifndef _LIBC_PTHREAD_H 2#define _LIBC_PTHREAD_H 3 4#include <bits/thread.h> 5#include <sys/_structs.h> 6#include <sys/cdefs.h> 7#include <sys/types.h> 8 9__BEGIN_DECLS 10 11int pthread_create(void* func); 12 13__END_DECLS 14 15#endif /* _LIBC_PTHREAD_H */