10 lines
116 B
C
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
|