mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
1b0b96665a
Co-authored-by: NWPlayer123 <NWPlayer123@users.noreply.github.com>
9 lines
96 B
C
9 lines
96 B
C
#ifndef RAND_H
|
|
#define RAND_H
|
|
#include "types.h"
|
|
|
|
void srand(u32 seed);
|
|
int rand(void);
|
|
|
|
#endif
|