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 /bin/date/date.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 'bin/date/date.c')
-rw-r--r-- | bin/date/date.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bin/date/date.c b/bin/date/date.c index 9b2c56a5800..ae5b6484e1a 100644 --- a/bin/date/date.c +++ b/bin/date/date.c @@ -1,4 +1,4 @@ -/* $OpenBSD: date.c,v 1.20 2002/01/16 18:44:21 mpech Exp $ */ +/* $OpenBSD: date.c,v 1.21 2002/02/16 21:27:06 millert Exp $ */ /* $NetBSD: date.c,v 1.11 1995/09/07 06:21:05 jtc Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)date.c 8.2 (Berkeley) 4/28/95"; #else -static char rcsid[] = "$OpenBSD: date.c,v 1.20 2002/01/16 18:44:21 mpech Exp $"; +static char rcsid[] = "$OpenBSD: date.c,v 1.21 2002/02/16 21:27:06 millert Exp $"; #endif #endif /* not lint */ @@ -72,9 +72,9 @@ time_t tval; int retval, nflag; int slidetime; -static void setthetime __P((char *)); -static void badformat __P((void)); -static void usage __P((void)); +static void setthetime(char *); +static void badformat(void); +static void usage(void); int main(argc, argv) |