mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
5 lines
128 B
C
5 lines
128 B
C
|
/* Return the smallest prime >= 2^(idx+1)
|
||
|
* Only works for idx<30 */
|
||
|
int get_prime (unsigned int idx);
|
||
|
void test_primes(void);
|