diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-16 21:28:12 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-16 21:28:12 +0000 |
commit | 6d57a1a176004a7d8fc009cdcf760098f86e3263 (patch) | |
tree | ee423c619fad03813234b9362694a17f3a638f0b /usr.bin/msgs/msgs.c | |
parent | c707cb295fc3cac8d8feb343e949e0dcf71b8476 (diff) |
Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.
Diffstat (limited to 'usr.bin/msgs/msgs.c')
-rw-r--r-- | usr.bin/msgs/msgs.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/usr.bin/msgs/msgs.c b/usr.bin/msgs/msgs.c index 1895a727358..9e5a3c0ebda 100644 --- a/usr.bin/msgs/msgs.c +++ b/usr.bin/msgs/msgs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: msgs.c,v 1.20 2002/01/04 16:22:19 art Exp $ */ +/* $OpenBSD: msgs.c,v 1.21 2002/02/16 21:27:49 millert Exp $ */ /* $NetBSD: msgs.c,v 1.7 1995/09/28 06:57:40 tls Exp $ */ /*- @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)msgs.c 8.2 (Berkeley) 4/28/95"; #else -static char rcsid[] = "$OpenBSD: msgs.c,v 1.20 2002/01/04 16:22:19 art Exp $"; +static char rcsid[] = "$OpenBSD: msgs.c,v 1.21 2002/02/16 21:27:49 millert Exp $"; #endif #endif /* not lint */ @@ -141,14 +141,14 @@ int Lpp = 0; time_t t; time_t keep; -void prmesg __P((int)); -void onintr __P((int)); -void onsusp __P((int)); -int linecnt __P((FILE *)); -int next __P((char *)); -void ask __P((char *)); -void gfrsub __P((FILE *)); -char *nxtfld __P((char *)); +void prmesg(int); +void onintr(int); +void onsusp(int); +int linecnt(FILE *); +int next(char *); +void ask(char *); +void gfrsub(FILE *); +char *nxtfld(char *); /* option initialization */ bool hdrs = NO; |