fixed a wrong conditional in mio-prv.h

This commit is contained in:
hyung-hwan 2019-11-24 05:10:55 +00:00
parent ec1c9ac5d0
commit d95b96b34e

View File

@ -59,7 +59,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 <string.h>
# endif