aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/include/c.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/include/c.h b/src/include/c.h
index bebbfd83d16..e5510e278d1 100644
--- a/src/include/c.h
+++ b/src/include/c.h
@@ -950,12 +950,6 @@ extern void ExceptionalCondition(const char *conditionName,
*/
#define Min(x, y) ((x) < (y) ? (x) : (y))
-/*
- * Abs
- * Return the absolute value of the argument.
- */
-#define Abs(x) ((x) >= 0 ? (x) : -(x))
-
/* Get a bit mask of the bits set in non-long aligned addresses */
#define LONG_ALIGN_MASK (sizeof(long) - 1)