MyOS Libc
unistd.h
Go to the documentation of this file.
1 
5 #ifndef UNISTD_H
6 #define UNISTD_H
7 
8 #include <sys/types.h>
9 
10 #ifndef DOXYGEN_SHOULD_SKIP_THIS
11 
12 pid_t fork(void); // GCC required
13 int execv(const char* path, char* const argv[]); // GCC required
14 int execve(const char* path, char* const argv[], char* const envp[]); // GCC required
15 int execvp(const char* file, char* const argv[]); // GCC required
16 
17 #endif
18 
23 pid_t getpid();
24 
25 
26 #endif
getpid
pid_t getpid()
Definition: unistd.c:7