Files
pokediamond/arm9/lib/MSL_C/include/stdlib.h
2025-02-23 22:13:48 +00:00

11 lines
262 B
C

#ifndef POKEDIAMOND_MSL_C_STDLIB_H
#define POKEDIAMOND_MSL_C_STDLIB_H
// this file MUST be called stdlib.h, as the filename affects matching for some reason
int abs(int val);
void srand(unsigned int seed);
int rand(void);
#endif // POKEDIAMOND_MSL_C_STDLIB_H