$OpenBSD: patch-src_math_bigintops_c,v 1.1 2016/03/05 18:23:17 pascal Exp $

https://github.com/MoarVM/MoarVM/commit/24b386728c1ec71f56dd0eaf11303559528e3b37

--- src/math/bigintops.c.orig	Sat Mar  5 19:16:48 2016
+++ src/math/bigintops.c	Sat Mar  5 19:18:37 2016
@@ -1,6 +1,10 @@
 #include "moar.h"
 #include <math.h>
 
+#ifndef MAX
+    #define MAX(x,y) ((x)>(y)?(x):(y))
+#endif
+
 /* Taken from mp_set_long, but portably accepts a 64-bit number. */
 int MVM_bigint_mp_set_uint64(mp_int * a, MVMuint64 b) {
   int     x, res;
