aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/rc/exec.h
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-10-21 16:53:23 -0700
committerNicholas Noll <nbnoll@eml.cc>2021-10-21 16:53:23 -0700
commit3733507b090311b70ca8a2fed0c739b808f679c6 (patch)
treea964964480489b1a274a1bf1ec208243ccdf70d0 /sys/cmd/rc/exec.h
parentda77d3be2eb0785bc0c0b60c686e163d6243c744 (diff)
feat(rc): added a few builtins
Diffstat (limited to 'sys/cmd/rc/exec.h')
-rw-r--r--sys/cmd/rc/exec.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/cmd/rc/exec.h b/sys/cmd/rc/exec.h
index 652edea..9edd9ed 100644
--- a/sys/cmd/rc/exec.h
+++ b/sys/cmd/rc/exec.h
@@ -34,7 +34,10 @@ void Xerror(char*);
/* builtin commands */
void xcd(void);
-void xfg(void);
void xdot(void);
+void xecho(void);
+void xexit(void);
+void xfg(void);
void xjob(void);
+
void xboot(int argc, char *argv[]);