mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 07:14:17 +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);
|