REDRIVER2/src_rebuild/EMULATOR/ABS.H
2020-03-31 22:56:49 +06:00

10 lines
126 B
C

/*#ifndef ABS_H
#define ABS_H
#ifndef ABS
#define ABS(x) (((x)>=0)?(x):(-(x)))
#endif
//extern int abs(int input);
#endif*/