]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - primes/pr_tbl.c
ANSIfy
[bsdgames-darwin.git] / primes / pr_tbl.c
index 58c0ec688fd770a0e41b734e90766aabc3f70bf3..d45204a0fbb5b744ede38129e65432b51d6f452c 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: pr_tbl.c,v 1.7 2003/08/07 09:37:33 agc Exp $   */
+
 /*
- * Copyright (c) 1989 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1989, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Landon Curt Noll.
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- *    must display the following acknowledgement:
- *     This product includes software developed by the University of
- *     California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *
  * SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
 #ifndef lint
-static char sccsid[] = "@(#)pr_tbl.c   5.2 (Berkeley) 6/1/90";
+#if 0
+static char sccsid[] = "@(#)pr_tbl.c   8.1 (Berkeley) 5/31/93";
+#else
+__RCSID("$NetBSD: pr_tbl.c,v 1.7 2003/08/07 09:37:33 agc Exp $");
+#endif
 #endif /* not lint */
 
 /*
@@ -51,7 +54,7 @@ static char sccsid[] = "@(#)pr_tbl.c  5.2 (Berkeley) 6/1/90";
 
 #include "primes.h"
 
-ubig prime[] = {
+const ubig prime[] = {
 2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,
 107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,
 211,223,227,229,233,239,241,251,257,263,269,271,277,281,283,293,307,311,313,
@@ -543,4 +546,4 @@ ubig prime[] = {
 };
 
 /* pr_limit - largest prime in the prime table */
-unsigned long *pr_limit = &prime[(sizeof(prime)/sizeof(prime[0]))-1];
+const ubig *pr_limit = &prime[(sizeof(prime)/sizeof(prime[0]))-1];