summaryrefslogtreecommitdiffstats
path: root/sxiv.h
diff options
context:
space:
mode:
authorBert <ber.t@gmx.com>2011-01-18 20:11:28 +0100
committerBert <ber.t@gmx.com>2011-01-18 20:11:28 +0100
commit79c7e6178e9b577158408157ec23a477556ecf16 (patch)
treeabbefa4cd1b884ca19d396359b4e40dad0057589 /sxiv.h
parentbb4edc756c7ceddb0f13194929cd1d363c85d653 (diff)
downloadnsxiv-79c7e6178e9b577158408157ec23a477556ecf16.tar.zst
Render image on window
Diffstat (limited to 'sxiv.h')
-rw-r--r--sxiv.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sxiv.h b/sxiv.h
index 1ebcf57..97252af 100644
--- a/sxiv.h
+++ b/sxiv.h
@@ -23,6 +23,9 @@
#define VERSION "git-20110117"
+#define MIN(a,b) ((a) < (b) ? (a) : (b))
+#define MAX(a,b) ((a) > (b) ? (a) : (b))
+
#define WARN(...) \
do { \
fprintf(stderr, "sxiv: %s:%d: warning: ", __FILE__, __LINE__); \
@@ -30,7 +33,7 @@
fprintf(stderr, "\n"); \
} while (0)
-#define DIE(...) \
+#define DIE(...) \
do { \
fprintf(stderr, "sxiv: %s:%d: error: ", __FILE__, __LINE__); \
fprintf(stderr, __VA_ARGS__); \