diff options
| author | Gerd Moellmann | 2000-06-28 20:28:21 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-06-28 20:28:21 +0000 |
| commit | 6e509e80cb6f30ba4413e741b93aea5994926c27 (patch) | |
| tree | 6eec5b1701eca9bf8641136db09fcbb58efadfab /src | |
| parent | 1a7ad14fd09b8832c2cf16ed97c7731ad62da271 (diff) | |
| download | emacs-6e509e80cb6f30ba4413e741b93aea5994926c27.tar.gz emacs-6e509e80cb6f30ba4413e741b93aea5994926c27.zip | |
(next_almost_prime): Make it externally visible.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 3 |
1 files changed, 1 insertions, 2 deletions
| @@ -3542,7 +3542,6 @@ Lisp_Object Qhash_table_test; | |||
| 3542 | /* Function prototypes. */ | 3542 | /* Function prototypes. */ |
| 3543 | 3543 | ||
| 3544 | static struct Lisp_Hash_Table *check_hash_table P_ ((Lisp_Object)); | 3544 | static struct Lisp_Hash_Table *check_hash_table P_ ((Lisp_Object)); |
| 3545 | static int next_almost_prime P_ ((int)); | ||
| 3546 | static int get_key_arg P_ ((Lisp_Object, int, Lisp_Object *, char *)); | 3545 | static int get_key_arg P_ ((Lisp_Object, int, Lisp_Object *, char *)); |
| 3547 | static void maybe_resize_hash_table P_ ((struct Lisp_Hash_Table *)); | 3546 | static void maybe_resize_hash_table P_ ((struct Lisp_Hash_Table *)); |
| 3548 | static int cmpfn_eql P_ ((struct Lisp_Hash_Table *, Lisp_Object, unsigned, | 3547 | static int cmpfn_eql P_ ((struct Lisp_Hash_Table *, Lisp_Object, unsigned, |
| @@ -3583,7 +3582,7 @@ check_hash_table (obj) | |||
| 3583 | /* Value is the next integer I >= N, N >= 0 which is "almost" a prime | 3582 | /* Value is the next integer I >= N, N >= 0 which is "almost" a prime |
| 3584 | number. */ | 3583 | number. */ |
| 3585 | 3584 | ||
| 3586 | static int | 3585 | int |
| 3587 | next_almost_prime (n) | 3586 | next_almost_prime (n) |
| 3588 | int n; | 3587 | int n; |
| 3589 | { | 3588 | { |