Add missing prototypes for static functions to avoid warnings.

This commit is contained in:
nhkeni
2024-02-29 10:49:53 -05:00
parent 356875ea20
commit acf60063d5
21 changed files with 45 additions and 0 deletions

View File

@@ -30,6 +30,11 @@
#define inline /*empty*/
#endif
static inline uint32_t lower_bits(uint64_t);
static inline uint32_t upper_bits(uint64_t);
static void isaac64_update(isaac64_ctx *);
static void isaac64_mix(uint64_t[8]);
/* Extract ISAAC64_SZ_LOG bits (starting at bit 3). */
static inline uint32_t lower_bits(uint64_t x)
{