mirror of
https://github.com/Fennix-Project/Userspace.git
synced 2025-05-29 07:47:50 +00:00
20 lines
308 B
C
20 lines
308 B
C
#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
|