aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/rc/pcmd.c
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-10-13 10:51:54 -0700
committerNicholas Noll <nbnoll@eml.cc>2021-10-13 10:51:54 -0700
commitf2efbb46ef89c7c1693400f7209113c50c959f02 (patch)
tree1c44494a9260dc270aac0a5291a7952ab0e74514 /sys/cmd/rc/pcmd.c
parent0385c87c8434873bdb8b86d35700cdd61286b749 (diff)
Feat(rc): working(ish) version of rc shell
Removed compile commands
Diffstat (limited to 'sys/cmd/rc/pcmd.c')
-rw-r--r--sys/cmd/rc/pcmd.c4
1 files changed, 2 insertions, 2 deletions
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;