diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-04-11 19:26:13 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-04-11 19:26:13 +0000 |
commit | 6970674805d79449efc7116d358f22c5ff8051fe (patch) | |
tree | e5a458948995f74c0081f2d96a0cf9032f3c06e6 /libihash | |
parent | 23fc870c76951551c0d88b82eb04ff03e1f101a1 (diff) |
(_ihash_nextprime): Renamed from nextprime.c. All callers changed.
Diffstat (limited to 'libihash')
-rw-r--r-- | libihash/primes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libihash/primes.c b/libihash/primes.c index 5637e90d..0b7b5d10 100644 --- a/libihash/primes.c +++ b/libihash/primes.c @@ -28,7 +28,7 @@ static spin_lock_t table_lock = SPIN_LOCK_INITIALIZER; /* Return the next prime greater than or equal to N. */ int -nextprime (unsigned n) +_ihash_nextprime (unsigned n) { /* Among other things, We guarantee that, for all i (0 <= i < primes_len), primes[i] is a prime, |