marioparty4/libc/stdlib.h
2025-04-02 04:17:26 +02: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