platform.h: mempcpy needs <string.h>

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
diff --git a/include/platform.h b/include/platform.h
index f006696..1168a34 100644
--- a/include/platform.h
+++ b/include/platform.h
@@ -516,6 +516,7 @@
 #endif
 
 #ifndef HAVE_MEMPCPY
+#include <string.h>
 static ALWAYS_INLINE void *mempcpy(void *dest, const void *src, size_t len)
 {
 	return memcpy(dest, src, len) + len;