mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-23 02:42:38 +01:00
10 lines
126 B
C
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*/ |