os/sysroot/usr/include/unistd.h
2019-09-01 13:49:01 -05:00

13 lines
334 B
C

#ifndef UNISTD_H
#define UNISTD_H
#include <sys/types.h>
pid_t fork(void); // GCC required
int execv(const char* path, char* const argv[]); // GCC required
int execve(const char* path, char* const argv[], char* const envp[]); // GCC required
int execvp(const char* file, char* const argv[]); // GCC required
pid_t getpid();
#endif