diff options
| author | Aleksa Vučković <aleksav013@gmail.com> | 2022-01-09 18:50:48 +0100 |
|---|---|---|
| committer | Aleksa Vučković <aleksav013@gmail.com> | 2022-01-10 22:36:52 +0100 |
| commit | 8e79ceaa7d3995df5a5dcf0ffdbd52ebe4c52163 (patch) | |
| tree | 60424b081f4a3e37e0c87dfa764ea559f1ba0543 /src/include/unistd.h | |
| parent | dbbb74c22f42df9175eaea72c1eb12d6deab332c (diff) | |
Indentation
Diffstat (limited to 'src/include/unistd.h')
| -rw-r--r-- | src/include/unistd.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/include/unistd.h b/src/include/unistd.h index a6bfee0..abe7f3c 100644 --- a/src/include/unistd.h +++ b/src/include/unistd.h @@ -1,14 +1,11 @@ #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 |
