mirror of
https://github.com/pret/pmd-sky.git
synced 2026-06-20 19:50:54 -05:00
12 lines
255 B
C
12 lines
255 B
C
#ifndef PMD_SKY_MSL_C_STDLIB_H
|
|
#define PMD_SKY_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 // PMD_SKY_MSL_C_STDLIB_H
|
|
|