summaryrefslogtreecommitdiff
path: root/src/internal/slibtool_spawn_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal/slibtool_spawn_impl.h')
-rw-r--r--src/internal/slibtool_spawn_impl.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/internal/slibtool_spawn_impl.h b/src/internal/slibtool_spawn_impl.h
index da2e762..cfdd779 100644
--- a/src/internal/slibtool_spawn_impl.h
+++ b/src/internal/slibtool_spawn_impl.h
@@ -30,8 +30,6 @@
#include <spawn.h>
#endif
-extern char ** environ;
-
static inline int slbt_spawn(
struct slbt_exec_ctx * ectx,
bool fwait)
@@ -45,7 +43,7 @@ static inline int slbt_spawn(
ectx->program,
0,0,
ectx->argv,
- ectx->envp ? ectx->envp : environ))
+ ectx->envp))
pid = -1;
#else