From: Radoslav Gerganov Date: Fri, 26 May 2023 06:36:40 +0000 (+0300) Subject: examples : add missing header file (#198) X-Git-Tag: upstream/0.0.1642~1438 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=3d3e22ff08d26373216958280bd4f6844308ae7e;p=pkg%2Fggml%2Fsources%2Fggml examples : add missing header file (#198) Some of the examples are missing the cstring header which is needed for memcpy(). --- diff --git a/examples/mnist/main.cpp b/examples/mnist/main.cpp index 60a8fa71..c84eedd9 100644 --- a/examples/mnist/main.cpp +++ b/examples/mnist/main.cpp @@ -4,6 +4,7 @@ #include #include +#include #include #include #include diff --git a/examples/mpt/main.cpp b/examples/mpt/main.cpp index 18d3bd3e..84bb3f93 100644 --- a/examples/mpt/main.cpp +++ b/examples/mpt/main.cpp @@ -6,6 +6,7 @@ #include #include #include +#include #include #include #include