summaryrefslogtreecommitdiff
path: root/games/number
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-02-16 21:28:12 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-02-16 21:28:12 +0000
commit6d57a1a176004a7d8fc009cdcf760098f86e3263 (patch)
treeee423c619fad03813234b9362694a17f3a638f0b /games/number
parentc707cb295fc3cac8d8feb343e949e0dcf71b8476 (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 'games/number')
-rw-r--r--games/number/number.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/games/number/number.c b/games/number/number.c
index a1264570812..237b15784ad 100644
--- a/games/number/number.c
+++ b/games/number/number.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: number.c,v 1.7 1999/09/25 15:52:20 pjanzen Exp $ */
+/* $OpenBSD: number.c,v 1.8 2002/02/16 21:27:11 millert Exp $ */
/*
* Copyright (c) 1988, 1993, 1994
@@ -43,7 +43,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)number.c 8.3 (Berkeley) 5/4/95";
#else
-static char rcsid[] = "$OpenBSD: number.c,v 1.7 1999/09/25 15:52:20 pjanzen Exp $";
+static char rcsid[] = "$OpenBSD: number.c,v 1.8 2002/02/16 21:27:11 millert Exp $";
#endif
#endif /* not lint */
@@ -81,13 +81,13 @@ static const char *const name1[] = {
"novemdecillion", "vigintillion",
};
-void convert __P((char *));
-void convertexp __P((char *));
-int number __P((const char *, int));
-void pfract __P((int));
-void toobig __P((void));
-int unit __P((int, const char *));
-void usage __P((void));
+void convert(char *);
+void convertexp(char *);
+int number(const char *, int);
+void pfract(int);
+void toobig(void);
+int unit(int, const char *);
+void usage(void);
int lflag;