Add missing string.h include for strdup.

This commit is contained in:
Nathan Moinvaziri 2023-03-31 18:18:31 -07:00
parent 94e474a03d
commit 5dd5fe0906
3 changed files with 3 additions and 1 deletions

View File

@ -17,6 +17,7 @@
#include "mz_strm_os.h"
#include <ctype.h> /* tolower */
#include <string.h>
/***************************************************************************/

View File

@ -17,7 +17,7 @@
#if defined(HAVE_ICONV)
#include <iconv.h>
#endif
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>

View File

@ -14,6 +14,7 @@
#include "mz_strm_split.h"
#include <stdio.h> /* snprintf */
#include <string.h>
#if defined(_MSC_VER) && (_MSC_VER < 1900)
# define snprintf _snprintf