From 031c3bb95f3d0a74d985286068baa6dd4d29d83f Mon Sep 17 00:00:00 2001 From: Daniel Lange Date: Mon, 11 Apr 2016 13:00:18 +0200 Subject: Imported Upstream version 0.5.3 --- RichString.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'RichString.c') diff --git a/RichString.c b/RichString.c index 63db850..7a92e08 100644 --- a/RichString.c +++ b/RichString.c @@ -4,7 +4,6 @@ #include #include #include -#include #include "debug.h" #include @@ -20,6 +19,10 @@ typedef struct RichString_ { }*/ +#ifndef MIN +#define MIN(a,b) ((a)<(b)?(a):(b)) +#endif + /* private property */ WINDOW* workArea = NULL; -- cgit v1.2.3