From beef17caf639bfeaf98f4e301d2ff12c2ebaefeb Mon Sep 17 00:00:00 2001 From: "hyunghwan.chung" Date: Sun, 24 Nov 2019 05:11:18 +0000 Subject: [PATCH] fixed a wrong conditional in moo-prv.h --- moo/lib/moo-prv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moo/lib/moo-prv.h b/moo/lib/moo-prv.h index 95a058a..0254c72 100644 --- a/moo/lib/moo-prv.h +++ b/moo/lib/moo-prv.h @@ -103,7 +103,7 @@ #else -# if defined(HAVE___BUILTIN_MEMSET) || !defined(HAVE___BUILTIN_MEMCPY) || !defined(HAVE___BUILTIN_MEMMOVE) || !defined(HAVE___BUILTIN_MEMCMP) +# if !defined(HAVE___BUILTIN_MEMSET) || !defined(HAVE___BUILTIN_MEMCPY) || !defined(HAVE___BUILTIN_MEMMOVE) || !defined(HAVE___BUILTIN_MEMCMP) # include # endif