aboutsummaryrefslogtreecommitdiff
path: root/libc/inc/def.h
diff options
context:
space:
mode:
Diffstat (limited to 'libc/inc/def.h')
-rw-r--r--libc/inc/def.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/inc/def.h b/libc/inc/def.h
index c334fcb..708ffee 100644
--- a/libc/inc/def.h
+++ b/libc/inc/def.h
@@ -28,6 +28,8 @@ typedef unsigned long long u64;
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
#define MAX(a, b) (((a) > (b)) ? (a) : (b))
+#define ABS(a) (((a) < 0) ? (-a) : (a))
+
#define NORETURN __attribute__((noreturn))
#define NO_SANITIZE __attribute__((no_sanitize("undefined")))
#define PACKED __attribute__((packed))