diff options
Diffstat (limited to 'posix')
-rw-r--r-- | posix/execl.c | 1 | ||||
-rw-r--r-- | posix/execle.c | 1 | ||||
-rw-r--r-- | posix/execlp.c | 1 | ||||
-rw-r--r-- | posix/spawn_faction_addchdir.c | 2 |
4 files changed, 4 insertions, 1 deletions
diff --git a/posix/execl.c b/posix/execl.c index 8d319a4528..61aef66126 100644 --- a/posix/execl.c +++ b/posix/execl.c @@ -19,6 +19,7 @@ #include <errno.h> #include <stdarg.h> #include <sys/param.h> +#include <stddef.h> /* Execute PATH with all arguments after PATH until a NULL pointer and environment from `environ'. */ diff --git a/posix/execle.c b/posix/execle.c index 7539ce6b8d..f6608ee112 100644 --- a/posix/execle.c +++ b/posix/execle.c @@ -19,6 +19,7 @@ #include <stdarg.h> #include <errno.h> #include <sys/param.h> +#include <stddef.h> /* Execute PATH with all arguments after PATH until a NULL pointer, and the argument after that for environment. */ diff --git a/posix/execlp.c b/posix/execlp.c index 9eaca5fd25..4761962176 100644 --- a/posix/execlp.c +++ b/posix/execlp.c @@ -19,6 +19,7 @@ #include <stdarg.h> #include <errno.h> #include <sys/param.h> +#include <stddef.h> /* Execute FILE, searching in the `PATH' environment variable if it contains no slashes, with all arguments after FILE until a diff --git a/posix/spawn_faction_addchdir.c b/posix/spawn_faction_addchdir.c index 6558628547..20a3ba92ab 100644 --- a/posix/spawn_faction_addchdir.c +++ b/posix/spawn_faction_addchdir.c @@ -19,7 +19,7 @@ #include <errno.h> #include <spawn.h> #include <string.h> - +#include <stdlib.h> #include "spawn_int.h" int |