2020-06-17 12:28:40 +02:00
|
|
|
#ifndef ABS_H
|
2020-03-31 18:55:57 +02:00
|
|
|
#define ABS_H
|
|
|
|
|
|
|
|
#ifndef ABS
|
2020-09-18 20:26:53 +02:00
|
|
|
#define ABS(x) ((x) < 0 ? -(x) : (x))
|
2020-03-31 18:55:57 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//extern int abs(int input);
|
|
|
|
|
2020-06-17 12:28:40 +02:00
|
|
|
#endif
|