REDRIVER2/src_rebuild/EMULATOR/ABS.H

10 lines
123 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))
2020-03-31 18:55:57 +02:00
#endif
//extern int abs(int input);
#endif