>From eb93073bfdfeca207bb4c8e42b2a46ea59cf0327 Mon Sep 17 00:00:00 2001 From: Tobias Stoeckmann <[email protected]> Date: Sun, 29 Apr 2012 13:43:31 +0200 Subject: [PATCH 2/3] Include assert.h to avoid linker issues if -DDEBUG was not supplied.
--- WINGs/string.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/WINGs/string.c b/WINGs/string.c index aabad31..d2e8b2a 100644 --- a/WINGs/string.c +++ b/WINGs/string.c @@ -10,6 +10,7 @@ #include <string.h> #include <stdlib.h> +#include <assert.h> #include <ctype.h> #ifdef HAVE_BSD_STRING_H #include <bsd/string.h> -- 1.7.6 -- To unsubscribe, send mail to [email protected].
