mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-11 05:14:21 -05:00
11 lines
268 B
C
11 lines
268 B
C
#ifndef POKEHEARTGOLD_MSL_C_STDLIB_H
|
|
#define POKEHEARTGOLD_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 // POKEHEARTGOLD_MSL_C_STDLIB_H
|