From 6cdade9983a7ebd5a5bb8296daa49d5475f07af8 Mon Sep 17 00:00:00 2001 From: markus schnalke Date: Tue, 27 Mar 2012 15:22:43 +0200 Subject: [PATCH] Clean up prototypes. Pulled in from nmh. Thanks to Ken Hornstein. --- uip/pick.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/uip/pick.c b/uip/pick.c index 7f8d39a..0f0dda3 100644 --- a/uip/pick.c +++ b/uip/pick.c @@ -476,23 +476,23 @@ static struct nexus *head; /* ** prototypes for date routines */ -static struct tws *tws_parse(); -static struct tws *tws_special(); +static struct tws *tws_parse(char *, int); +static struct tws *tws_special(char *); /* ** static prototypes */ -static void PRaction(); -static int gcompile(); -static int advance(); -static int cclass(); -static int tcompile(); - -static struct nexus *parse(); -static struct nexus *nexp1(); -static struct nexus *nexp2(); -static struct nexus *nexp3(); -static struct nexus *newnexus(); +static void PRaction(struct nexus *, int); +static int gcompile(struct nexus *, char *); +static int advance(char *, char *); +static int cclass(unsigned char *, int, int); +static int tcompile(char *, struct tws *, int); + +static struct nexus *parse(void); +static struct nexus *nexp1(void); +static struct nexus *nexp2(void); +static struct nexus *nexp3(void); +static struct nexus *newnexus(int (*)()); static int ORaction(); static int ANDaction(); -- 1.7.10.4