From 459bb86e7a6342651369b23a506c0bc31d544db2 Mon Sep 17 00:00:00 2001 From: stryqx Date: Sat, 12 Oct 2002 04:05:02 +0000 Subject: [PATCH] Include string.h for memcpy definition for those systems that need it. --- src/qli/exe.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/qli/exe.cpp b/src/qli/exe.cpp index 5bc2e8b38d..ca43d8033d 100644 --- a/src/qli/exe.cpp +++ b/src/qli/exe.cpp @@ -49,6 +49,10 @@ #include #endif +#ifdef HAVE_STRING_H +#include +#endif + #ifndef FOPEN_WRITE_TYPE #define FOPEN_WRITE_TYPE "w" #endif