summaryrefslogtreecommitdiffstats
path: root/quiz
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1993-04-18 21:52:18 +0000
committermycroft <mycroft@NetBSD.org>1993-04-18 21:52:18 +0000
commit9b85680687e77d758ed4d5f002375aa6f88dc803 (patch)
treec56ea44ec5afb5b70ac6ca16fafdc70a663e3a79 /quiz
parentd244d8703e3d0edbd492dca367d74db166e8a687 (diff)
downloadbsdgames-darwin-9b85680687e77d758ed4d5f002375aa6f88dc803.tar.gz
bsdgames-darwin-9b85680687e77d758ed4d5f002375aa6f88dc803.tar.zst
bsdgames-darwin-9b85680687e77d758ed4d5f002375aa6f88dc803.zip
Cleanup for GCC 2.
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)