summaryrefslogtreecommitdiff
path: root/exec.c
diff options
context:
space:
mode:
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
commitc454374b73b748dd711554b275ffaf62001b1fc9 (patch)
tree676136acd57dd26e7fce899e5bac8c87237570c1 /exec.c
parent8f6bd186173b0ab79e99de1b9c913e3ced002d21 (diff)
add utils.c
Diffstat (limited to 'exec.c')
-rw-r--r--exec.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/exec.c b/exec.c
index 3a88901..061fa69 100644
--- a/exec.c
+++ b/exec.c
@@ -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) {