summaryrefslogtreecommitdiffstats
path: root/nsxiv.h
diff options
context:
space:
mode:
Diffstat (limited to 'nsxiv.h')
-rw-r--r--nsxiv.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/nsxiv.h b/nsxiv.h
index 716b24d..6ae2289 100644
--- a/nsxiv.h
+++ b/nsxiv.h
@@ -33,15 +33,9 @@
*/
#define CLEANUP
-#ifndef MIN
#define MIN(a,b) ((a) < (b) ? (a) : (b))
-#endif
-#ifndef MAX
#define MAX(a,b) ((a) > (b) ? (a) : (b))
-#endif
-#ifndef ABS
#define ABS(a) ((a) > 0 ? (a) : -(a))
-#endif
#define ARRLEN(a) (sizeof(a) / sizeof((a)[0]))
@@ -465,4 +459,3 @@ void win_set_cursor(win_t*, cursor_t);
void win_cursor_pos(win_t*, int*, int*);
#endif /* NSXIV_H */
-