os/sysroot/usr/include/unistd.h
2019-08-27 20:07:54 -05:00

12 lines
318 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
#endif