mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 14:41:38 -04:00
8 lines
104 B
C
8 lines
104 B
C
#ifndef RAND_H
|
|
#define RAND_H
|
|
#include "types.h"
|
|
|
|
void srand (u32 seeed);
|
|
int rand(void);
|
|
|
|
#endif |