ZOVboot/limine/common/lib/rand.h
2026-03-13 14:19:46 +00:00

11 lines
145 B
C

#ifndef LIB__RAND_H__
#define LIB__RAND_H__
#include <stdint.h>
void srand(uint32_t s);
uint32_t rand32(void);
uint64_t rand64(void);
#endif