From d5850c53ca179b9674b98f35d359763416a3cc11 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Yusuf=20Ka=C4=9Fan=20Hano=C4=9Flu?= <hanoglu@yahoo.com>
Date: Wed, 22 Mar 2023 11:55:45 +0300
Subject: [PATCH] Add missing header for memcpy (#386)

fixed: memcpy is not defined
---
 llama.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/llama.cpp b/llama.cpp
index fde4d25..7de3c19 100644
--- a/llama.cpp
+++ b/llama.cpp
@@ -9,6 +9,7 @@
 #include <queue>
 #include <regex>
 #include <cassert>
+#include <cstring>
 
 // determine number of model parts based on the dimension
 static const std::unordered_map<int, int> LLAMA_N_PARTS = {