Files
ac-decomp/include/MSL_C/rand.h
T
Luke Street 1b0b96665a Migrate to dtk-template
Co-authored-by: NWPlayer123 <NWPlayer123@users.noreply.github.com>
2024-10-28 19:18:21 -06:00

9 lines
96 B
C

#ifndef RAND_H
#define RAND_H
#include "types.h"
void srand(u32 seed);
int rand(void);
#endif