aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/rc/rc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/rc/rc.h')
-rw-r--r--src/cmd/rc/rc.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/cmd/rc/rc.h b/src/cmd/rc/rc.h
index 9b415fc..f7533a0 100644
--- a/src/cmd/rc/rc.h
+++ b/src/cmd/rc/rc.h
@@ -139,7 +139,8 @@ struct Thread
struct WaitItem *on;
} wait;
- int pid, pgid, status;
+ int pid, pgid;
+ int status;
long line;
Thread *caller; // process we return to
@@ -261,3 +262,7 @@ char **mkenv(void);
int compile(Tree *);
Code *copycode(Code *c);
void freecode(Code *c);
+
+/* glob.c */
+#define GLOB ((char)(0x01))
+int match(char *, char *, int);