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/pcmd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/cmd/rc/pcmd.c') diff --git a/sys/cmd/rc/pcmd.c b/sys/cmd/rc/pcmd.c index 8caf60a..44754c1 100644 --- a/sys/cmd/rc/pcmd.c +++ b/sys/cmd/rc/pcmd.c @@ -7,7 +7,7 @@ char nl='\n'; /* change to semicolon for bourne-proofing */ #define c2 t->child[2] void -pdeglob(io *f, char *s) +pdeglob(Io *f, char *s) { while(*s){ if(*s==GLOB) @@ -17,7 +17,7 @@ pdeglob(io *f, char *s) } void -pcmd(io *f, tree *t) +pcmd(Io *f, Tree *t) { if(t==0) return; -- cgit v1.2.1