summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/sal/macros.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/sal/macros.h b/include/sal/macros.h
index e5d233801295..2e5a4b9d3df3 100644
--- a/include/sal/macros.h
+++ b/include/sal/macros.h
@@ -52,10 +52,6 @@
# define SAL_BOUND(x,l,h) ((x) <= (l) ? (l) : ((x) >= (h) ? (h) : (x)))
#endif
-#ifndef SAL_ABS
-# define SAL_ABS(a) (((a) < 0) ? (-(a)) : (a))
-#endif
-
#ifndef SAL_STRINGIFY
# define SAL_STRINGIFY_ARG(x) #x
# define SAL_STRINGIFY(x) SAL_STRINGIFY_ARG(x)