Update include directory

This commit is contained in:
Alex
2022-12-07 17:16:48 +02:00
parent fb075aa713
commit 096564b586
7 changed files with 112 additions and 0 deletions

19
libc/include/unistd.h Normal file
View File

@ -0,0 +1,19 @@
#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