From 9e39e1cf17ca94af306669c114221f8322d912c7 Mon Sep 17 00:00:00 2001
From: sezero <sezero@users.sourceforge.net>
Date: Sun, 15 Jan 2017 01:56:56 +0300
Subject: [PATCH] replace memory.h include with string.h in cpu.c

cpu.c was the only source to use memory.h instead of string.h.
---
 src/libFLAC/cpu.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/libFLAC/cpu.c b/src/libFLAC/cpu.c
index 1c80a72..6629fb9 100644
--- a/src/libFLAC/cpu.c
+++ b/src/libFLAC/cpu.c
@@ -37,7 +37,7 @@
 #include "private/cpu.h"
 #include "share/compat.h"
 #include <stdlib.h>
-#include <memory.h>
+#include <string.h>
 
 #if defined(_MSC_VER)
 #  include <intrin.h> /* for __cpuid() and _xgetbv() */
-- 
1.8.5.5

