summaryrefslogtreecommitdiffstats
path: root/games/primes
diff options
context:
space:
mode:
Diffstat (limited to 'games/primes')
-rw-r--r--games/primes/pattern.c10
-rw-r--r--games/primes/pr_tbl.c10
-rw-r--r--games/primes/primes.c16
3 files changed, 3 insertions, 33 deletions
diff --git a/games/primes/pattern.c b/games/primes/pattern.c
index 850ba75065b..a3e2737f83b 100644
--- a/games/primes/pattern.c
+++ b/games/primes/pattern.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pattern.c,v 1.4 2003/06/03 03:01:40 millert Exp $ */
+/* $OpenBSD: pattern.c,v 1.5 2009/10/27 23:59:26 deraadt Exp $ */
/* $NetBSD: pattern.c,v 1.3 1995/03/23 08:35:47 cgd Exp $ */
/*
@@ -33,14 +33,6 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)pattern.c 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: pattern.c,v 1.4 2003/06/03 03:01:40 millert Exp $";
-#endif
-#endif /* not lint */
-
/*
* pattern - the Eratosthenes sieve on odd numbers for 3,5,7,11 and 13
*
diff --git a/games/primes/pr_tbl.c b/games/primes/pr_tbl.c
index 9661e43aaec..fc0bed2aece 100644
--- a/games/primes/pr_tbl.c
+++ b/games/primes/pr_tbl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pr_tbl.c,v 1.4 2003/06/03 03:01:40 millert Exp $ */
+/* $OpenBSD: pr_tbl.c,v 1.5 2009/10/27 23:59:26 deraadt Exp $ */
/* $NetBSD: pr_tbl.c,v 1.3 1995/03/23 08:35:52 cgd Exp $ */
/*
@@ -33,14 +33,6 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)pr_tbl.c 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: pr_tbl.c,v 1.4 2003/06/03 03:01:40 millert Exp $";
-#endif
-#endif /* not lint */
-
/*
* prime - prime table
*
diff --git a/games/primes/primes.c b/games/primes/primes.c
index a42aefb6e22..0a54011ab07 100644
--- a/games/primes/primes.c
+++ b/games/primes/primes.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: primes.c,v 1.14 2007/09/06 20:50:55 chl Exp $ */
+/* $OpenBSD: primes.c,v 1.15 2009/10/27 23:59:26 deraadt Exp $ */
/* $NetBSD: primes.c,v 1.5 1995/04/24 12:24:47 cgd Exp $ */
/*
@@ -33,20 +33,6 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-static char copyright[] =
-"@(#) Copyright (c) 1989, 1993\n\
- The Regents of the University of California. All rights reserved.\n";
-#endif /* not lint */
-
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)primes.c 8.5 (Berkeley) 5/10/95";
-#else
-static char rcsid[] = "$OpenBSD: primes.c,v 1.14 2007/09/06 20:50:55 chl Exp $";
-#endif
-#endif /* not lint */
-
/*
* primes - generate a table of primes between two values
*