aboutsummaryrefslogtreecommitdiffstats
path: root/util.h
diff options
context:
space:
mode:
authorBert Münnich <be.muennich@googlemail.com>2012-08-16 21:21:08 +0200
committerBert Münnich <be.muennich@googlemail.com>2012-08-16 21:21:08 +0200
commitc78f55ebb43f5d73033a4709dfd32830a016a7cb (patch)
tree3af9b18cc92d43cad0e751eab296dcf0a09f3baa /util.h
parentf2a3d73212ad63e1081278347c189f2554cab8a4 (diff)
downloadnsxiv-c78f55ebb43f5d73033a4709dfd32830a016a7cb.tar.zst
Simplified zoomdiff function
Diffstat (limited to 'util.h')
-rw-r--r--util.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/util.h b/util.h
index 2a139ec..f1f4f14 100644
--- a/util.h
+++ b/util.h
@@ -27,9 +27,6 @@
#include "types.h"
-#ifndef ABS
-#define ABS(a) ((a) < 0 ? -(a) : (a))
-#endif
#ifndef MIN
#define MIN(a,b) ((a) < (b) ? (a) : (b))
#endif