mirror of
https://github.com/pret/pokediamond.git
synced 2026-09-12 02:56:42 -05:00
11 lines
262 B
C
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
|