mirror of
https://github.com/limine-bootloader/limine
synced 2024-12-05 14:42:16 +03:00
12 lines
149 B
C
12 lines
149 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
|