summaryrefslogtreecommitdiff
path: root/include/fyut.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/fyut.h')
-rw-r--r--include/fyut.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/fyut.h b/include/fyut.h
index abd515e..c1164bd 100644
--- a/include/fyut.h
+++ b/include/fyut.h
@@ -125,8 +125,8 @@
/* ----------------------------------------- Makroer */
-#define max(a,b) (((a) > (b)) ? (a) : (b))
-#define min(a,b) (((a) < (b)) ? (a) : (b))
+#define fymax(a,b) (((a) > (b)) ? (a) : (b))
+#define fymin(a,b) (((a) < (b)) ? (a) : (b))