summaryrefslogtreecommitdiff
path: root/src/syntax.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/syntax.h')
-rw-r--r--src/syntax.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/syntax.h b/src/syntax.h
index 0cdb76c..a0ccfac 100644
--- a/src/syntax.h
+++ b/src/syntax.h
@@ -1,6 +1,6 @@
# pragma once
-#include "../src/utils.h"
+#include "utils.h"
// Stage 1
@@ -90,7 +90,7 @@ typedef struct {
SpecialTokenKind kind;
union {
OperatorToken op;
- void* proc_sub_region;
+ void* proc_sub_region; // (TokenVec)
} as;
} SpecialToken;
@@ -190,5 +190,6 @@ typedef struct {
char** args;
FdRedirectVec redirects;
int stdin_fd, stdout_fd;
- IntVec open_fds;
+ IntVec parent_open_fds;
+ IntVec child_open_fds;
} ExecutableCommand;