2022-10-01 18:59:22 +00:00
|
|
|
#ifndef _UNISTD_H
|
|
|
|
#define _UNISTD_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
int execv(const char*, char* const[]);
|
|
|
|
int execve(const char*, char* const[], char* const[]);
|
|
|
|
int execvp(const char*, char* const[]);
|
|
|
|
pid_t fork(void);
|
2022-10-02 15:02:15 +00:00
|
|
|
long syscall(long, ...);
|
2022-10-02 16:10:53 +00:00
|
|
|
unsigned int sleep(unsigned int);
|
2022-10-02 15:02:15 +00:00
|
|
|
|
2022-10-01 18:59:22 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|