diff options
| author | Ákos Kőrösi <korakos99@gmail.com> | 2026-05-18 09:35:05 +0200 |
|---|---|---|
| committer | Ákos Kőrösi <korakos99@gmail.com> | 2026-05-18 09:35:05 +0200 |
| commit | c454374b73b748dd711554b275ffaf62001b1fc9 (patch) | |
| tree | 676136acd57dd26e7fce899e5bac8c87237570c1 /exec.c | |
| parent | 8f6bd186173b0ab79e99de1b9c913e3ced002d21 (diff) | |
add utils.c
Diffstat (limited to 'exec.c')
| -rw-r--r-- | exec.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,13 +1,14 @@ #include "lex.h" #include "parse.h" #include "exec.h" -#include "typeutils.h" +#include "utils.h" #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <signal.h> +#include <sys/wait.h> char* get_var(char* varname, ShellState* shstate) { |
