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

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

--- src/6model/reprs/P6bigint.c.orig	Sat Mar  5 19:20:52 2016
+++ src/6model/reprs/P6bigint.c	Sat Mar  5 19:21:27 2016
@@ -1,5 +1,9 @@
 #include "moar.h"
 
+#ifndef MIN
+    #define MIN(x,y) ((x)<(y)?(x):(y))
+#endif
+
 /* A forced 64-bit version of mp_get_long, since on some platforms long is
  * not all that long. */
 static MVMuint64 mp_get_int64(MVMThreadContext *tc, mp_int * a) {
