From ead340a66039096c7b4bf12dcd65e189769c6653 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Mon, 18 Oct 2021 17:51:11 -0700 Subject: feat(rc): job control prototype working for basic commands --- sys/cmd/rc/exec.h | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'sys/cmd/rc/exec.h') diff --git a/sys/cmd/rc/exec.h b/sys/cmd/rc/exec.h index ef826fb..ad53365 100644 --- a/sys/cmd/rc/exec.h +++ b/sys/cmd/rc/exec.h @@ -7,18 +7,9 @@ * Code in line with jump around {...} */ -void Xasync(void); -void Xconcatenate(void); void Xdollar(void); void Xexit(void); -void Xfunc(void); -void Xfor(void); -void Xglob(void); -void Xjump(void); void Xmark(void); -void Xmatch(void); -void Xpipe(void); -void Xread(void); void Xreturn(void); void Xlocal(void); void Xreadcmd(void); @@ -29,5 +20,7 @@ void Xerror(char*); void Xword(void); /* builtin commands */ +void xfg(void); void xdot(void); +void xjob(void); void xboot(int argc, char *argv[]); -- cgit v1.2.1