summaryrefslogtreecommitdiffstats
path: root/quiz
diff options
context:
space:
mode:
Diffstat (limited to 'quiz')
-rw-r--r--quiz/rxp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/quiz/rxp.c b/quiz/rxp.c
index 7adf8b5f..8fe76a9e 100644
--- a/quiz/rxp.c
+++ b/quiz/rxp.c
@@ -77,9 +77,9 @@ typedef short Rxp_t; /* type for regexp tokens */
static Rxp_t rxpbuf[RXP_LINE_SZ]; /* compiled regular expression buffer */
char rxperr[128]; /* parser error message */
-int rxp__compile __P((char *, int));
-char *rxp__expand __P((int));
-int rxp__match __P((char *, int, Rxp_t *, Rxp_t *, char *));
+static int rxp__compile __P((char *, int));
+static char *rxp__expand __P((int));
+static int rxp__match __P((char *, int, Rxp_t *, Rxp_t *, char *));
int
rxp_compile(s)