summaryrefslogtreecommitdiff
path: root/src/include/unistd.h
blob: a6bfee08828845d2f0675d61962abfdbdeee6f6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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);
#ifdef __cplusplus
}
#endif
#endif