diff options
Diffstat (limited to 'exec.c')
| -rw-r--r-- | exec.c | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -1,8 +1,3 @@ -#include "lex.h" -#include "parse.h" -#include "exec.h" -#include "utils.h" - #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -10,6 +5,10 @@ #include <signal.h> #include <sys/wait.h> +#include "utils.h" +#include "exec.h" +#include "preproc.h" + char* get_var(char* varname, ShellState* shstate) { MaybeStr maybe_varval = get_map_value(&shstate->shell_vars, varname); |
