REDRIVER2/src_rebuild/EMULATOR/ABS.H

10 lines
122 B
C++
Raw Normal View History

#ifndef ABS_H
2020-03-31 18:55:57 +02:00
#define ABS_H
#ifndef ABS
#define ABS(x) (((x)>=0)?(x):(-(x)))
#endif
//extern int abs(int input);
#endif