diff options
Diffstat (limited to 'LibC/process.h')
-rw-r--r-- | LibC/process.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/LibC/process.h b/LibC/process.h index 9b5bf828a9..aa2a1d9f5a 100644 --- a/LibC/process.h +++ b/LibC/process.h @@ -1,10 +1,11 @@ #pragma once #include <sys/cdefs.h> +#include <sys/types.h> __BEGIN_DECLS -int spawn(const char* path, const char** args); +pid_t spawn(const char* path, const char** args, const char** envp); __END_DECLS |