aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/rc/exec.h
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-11-16 12:08:59 -0800
committerNicholas Noll <nbnoll@eml.cc>2021-11-16 12:08:59 -0800
commit29138fff8643194ec49cb79304d2a878d46c378b (patch)
tree04f46762380d84994ec821cec13f1ff8288d46fc /src/cmd/rc/exec.h
parente4f9b993e97b6e6e790810b6d261dc5bf61b0513 (diff)
Feat: added heredocs
Heredocs are simply strings written to tmp files. There was minimal bug testing here. Also, various bug fixes are included
Diffstat (limited to 'src/cmd/rc/exec.h')
-rw-r--r--src/cmd/rc/exec.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/cmd/rc/exec.h b/src/cmd/rc/exec.h
index 1a81644..9db7e60 100644
--- a/src/cmd/rc/exec.h
+++ b/src/cmd/rc/exec.h
@@ -7,6 +7,13 @@
* code in line with jump around {...}
*/
+void Xnewpgid(void);
+void Xunmark(void);
+void Xwrite(void);
+void Xread(void);
+void Xrdwr(void);
+void Xappend(void);
+void Xdelhere(void);
void Xcase(void);
void Xfunc(void);
void Xmatch(void);
@@ -34,6 +41,7 @@ void Xflat(void);
void Xpipe(void);
void Xpipewait(void);
void Xpopredir(void);
+void Xglob(void);
void Xreturn(void);
void Xexit(void);