summaryrefslogtreecommitdiff
path: root/include/ouroboros/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ouroboros/utils.h')
-rw-r--r--include/ouroboros/utils.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/ouroboros/utils.h b/include/ouroboros/utils.h
index f5b6686f..d40a1783 100644
--- a/include/ouroboros/utils.h
+++ b/include/ouroboros/utils.h
@@ -28,6 +28,7 @@
#define MIN(a,b) (((a) < (b)) ? (a) : (b))
#define MAX(a,b) (((a) > (b)) ? (a) : (b))
+#define ABS(a) ((a) > 0 ? (a) : -(a))
typedef struct {
uint8_t * data;