]> git.eshelyaron.com Git - emacs.git/commitdiff
(next_almost_prime): Make it externally visible.
authorGerd Moellmann <gerd@gnu.org>
Wed, 28 Jun 2000 20:28:21 +0000 (20:28 +0000)
committerGerd Moellmann <gerd@gnu.org>
Wed, 28 Jun 2000 20:28:21 +0000 (20:28 +0000)
src/fns.c

index 3135ce5fffdcf2f0ead8f905e285e462d5ab1077..1e9905b1ab6fb0a339268e449977021e4ef848fd 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -3542,7 +3542,6 @@ Lisp_Object Qhash_table_test;
 /* Function prototypes.  */
 
 static struct Lisp_Hash_Table *check_hash_table P_ ((Lisp_Object));
-static int next_almost_prime P_ ((int));
 static int get_key_arg P_ ((Lisp_Object, int, Lisp_Object *, char *));
 static void maybe_resize_hash_table P_ ((struct Lisp_Hash_Table *));
 static int cmpfn_eql P_ ((struct Lisp_Hash_Table *, Lisp_Object, unsigned,
@@ -3583,7 +3582,7 @@ check_hash_table (obj)
 /* Value is the next integer I >= N, N >= 0 which is "almost" a prime
    number.  */
 
-static int
+int
 next_almost_prime (n)
      int n;
 {