mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-24 11:22:39 +01:00
e9be1b4d7d
- adding felony debug
10 lines
122 B
C
10 lines
122 B
C
#ifndef ABS_H
|
|
#define ABS_H
|
|
|
|
#ifndef ABS
|
|
#define ABS(x) (((x)>=0)?(x):(-(x)))
|
|
#endif
|
|
|
|
//extern int abs(int input);
|
|
|
|
#endif |