REDRIVER2/src_rebuild/EMULATOR/ABS.H
Ilya Shurumov e9be1b4d7d - implement CheckPlayerMissFelonies
- adding felony debug
2020-06-17 16:28:40 +06:00

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