marioparty4/include/stdlib.h
2024-10-22 22:36:42 -06:00

10 lines
116 B
C

#ifndef _STDLIB_H
#define _STDLIB_H
#ifdef __MWERKS__
#define abs(x) __abs(x)
#else
int abs(int x);
#endif
#endif