summaryrefslogtreecommitdiffstats
path: root/games/factor
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2002-02-16 21:27:05 +0000
committermillert <millert@openbsd.org>2002-02-16 21:27:05 +0000
commitc72b5b24e14c03dd8b22104fbae0d3921fa2aa37 (patch)
tree1ac67aab11df5f96856c0e3015d691db7dc9e811 /games/factor
parentdefault to rsa keyfile path for non key generation operations where (diff)
downloadwireguard-openbsd-c72b5b24e14c03dd8b22104fbae0d3921fa2aa37.tar.xz
wireguard-openbsd-c72b5b24e14c03dd8b22104fbae0d3921fa2aa37.zip
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/factor')
-rw-r--r--games/factor/factor.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/games/factor/factor.c b/games/factor/factor.c
index 0e12513327f..c899b387994 100644
--- a/games/factor/factor.c
+++ b/games/factor/factor.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: factor.c,v 1.11 2001/10/24 14:32:56 deraadt Exp $ */
+/* $OpenBSD: factor.c,v 1.12 2002/02/16 21:27:09 millert Exp $ */
/* $NetBSD: factor.c,v 1.5 1995/03/23 08:28:07 cgd Exp $ */
/*
@@ -47,7 +47,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)factor.c 8.4 (Berkeley) 5/4/95";
#else
-static char rcsid[] = "$OpenBSD: factor.c,v 1.11 2001/10/24 14:32:56 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: factor.c,v 1.12 2002/02/16 21:27:09 millert Exp $";
#endif
#endif /* not lint */
@@ -94,9 +94,9 @@ extern const ubig *pr_limit; /* largest prime in the prime array */
extern const char pattern[];
extern const int pattern_size;
-void pr_fact __P((u_int64_t)); /* print factors of a value */
-void pr_bigfact __P((u_int64_t));
-void usage __P((void));
+void pr_fact(u_int64_t); /* print factors of a value */
+void pr_bigfact(u_int64_t);
+void usage(void);
int
main(argc, argv)