aboutsummaryrefslogtreecommitdiffhomepage
path: root/env.h
diff options
context:
space:
mode:
Diffstat (limited to 'env.h')
-rw-r--r--env.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/env.h b/env.h
index bd597f1b..2c32b6a0 100644
--- a/env.h
+++ b/env.h
@@ -165,7 +165,7 @@ void env_push( int new_scope );
void env_pop();
/** Returns an array containing all exported variables in a format suitable for execv. */
-char **env_export_arr( int recalc );
+char **env_export_arr( bool recalc );
void env_export_arr(bool recalc, null_terminated_array_t<char> &result);
/**
@@ -201,5 +201,7 @@ public:
extern bool g_log_forks;
extern int g_fork_count;
+extern bool g_use_posix_spawn;
+
#endif