diff options
Diffstat (limited to '')
-rw-r--r-- | src/core/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/common.h b/src/core/common.h index e57c59d8..fd961dd7 100644 --- a/src/core/common.h +++ b/src/core/common.h @@ -178,4 +178,4 @@ void re3_assert(const char *expr, const char *filename, unsigned int lineno, con #define max(a, b) (((a) > (b)) ? (a) : (b)) #define min(a, b) (((a) < (b)) ? (a) : (b)) -#define abs(a) (((a) < 0) ? (-a) : (a)) +#define ABS(a) (((a) < 0) ? (-a) : (a)) |