]> git.meshlink.io Git - utcp/commitdiff
Make max() an inline function.
authorGuus Sliepen <guus@meshlink.io>
Thu, 29 Oct 2015 15:33:45 +0000 (16:33 +0100)
committerGuus Sliepen <guus@sliepen.org>
Sun, 2 Jul 2017 10:05:47 +0000 (12:05 +0200)
utcp.c

diff --git a/utcp.c b/utcp.c
index 95a82c428710ca91f5f2752045eea036bee40c79..fc147c295208631454682640fd6e30384b29bf26 100644 (file)
--- a/utcp.c
+++ b/utcp.c
@@ -53,9 +53,9 @@
 } while (0)
 #endif
 
-#ifndef max
-#define max(a, b) ((a) > (b) ? (a) : (b))
-#endif
+static inline size_t max(size_t a, size_t b) {
+       return a > b ? a : b;
+}
 
 #ifdef UTCP_DEBUG
 #include <stdarg.h>