summaryrefslogtreecommitdiff
path: root/usr/src/head/macros.h
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/head/macros.h')
-rw-r--r--usr/src/head/macros.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/head/macros.h b/usr/src/head/macros.h
index d284b4c722..ed4f9226d9 100644
--- a/usr/src/head/macros.h
+++ b/usr/src/head/macros.h
@@ -42,8 +42,8 @@ extern "C" {
* abs() is absolute value
*/
#define numeric(c) ((c) >= '0' && (c) <= '9')
-#define max(a, b) ((a) < (b) ? (b) : (a))
-#define min(a, b) ((a) > (b) ? (b) : (a))
+#define max(a, b) ((a) < (b) ? (b) : (a))
+#define min(a, b) ((a) > (b) ? (b) : (a))
#define abs(x) ((x) >= 0 ? (x) : -(x))
#define compare(str1, str2) strcmp((str1), (str2))