From f2efbb46ef89c7c1693400f7209113c50c959f02 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Wed, 13 Oct 2021 10:51:54 -0700 Subject: Feat(rc): working(ish) version of rc shell Removed compile commands --- sys/cmd/rc/prompt.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/cmd/rc/prompt.c') diff --git a/sys/cmd/rc/prompt.c b/sys/cmd/rc/prompt.c index b51e509..e474c14 100644 --- a/sys/cmd/rc/prompt.c +++ b/sys/cmd/rc/prompt.c @@ -22,7 +22,7 @@ static char* completion_matches(const char *s, int i) { - word *w; + Word *w; for(w=vlook(COMPLETE_RESULTS)->val; w; w=w->next, i--) if(!i) @@ -49,7 +49,7 @@ void readline(void) { static int first = 1; - io *f = runq->cmdfd; + Io *f = runq->cmdfd; char *s; long n; @@ -85,7 +85,7 @@ readline(void) void pprompt(void) { - var *prompt; + Var *prompt; if(runq->iflag){ flush(err); -- cgit v1.2.1