Add missing include for malloc()

This commit is contained in:
Tim Pambor 2020-05-11 19:00:38 +02:00
parent cf44f05cd3
commit 514ddade39
1 changed files with 1 additions and 0 deletions

View File

@ -196,6 +196,7 @@ inline int64_t i64round(double x)
#endif
#ifdef __MINGW32__
# include <cstdlib>
# include <string.h>
static inline char*strndup(const char*s, size_t n)
{