mz_os: add support for midipix

This commit is contained in:
Ørjan 2020-11-18 11:21:17 +00:00 committed by Nathan Moinvaziri
parent 261402ad2d
commit 72459e9abc
2 changed files with 3 additions and 3 deletions

View File

@ -21,10 +21,10 @@ extern "C" {
# define MZ_VERSION_MADEBY_HOST_SYSTEM (MZ_HOST_SYSTEM_OSX_DARWIN)
#elif defined(__riscos__)
# define MZ_VERSION_MADEBY_HOST_SYSTEM (MZ_HOST_SYSTEM_RISCOS)
#elif defined(__unix__)
# define MZ_VERSION_MADEBY_HOST_SYSTEM (MZ_HOST_SYSTEM_UNIX)
#elif defined(_WIN32)
# define MZ_VERSION_MADEBY_HOST_SYSTEM (MZ_HOST_SYSTEM_WINDOWS_NTFS)
#else
# define MZ_VERSION_MADEBY_HOST_SYSTEM (MZ_HOST_SYSTEM_UNIX)
#endif
#if defined(HAVE_LZMA) || defined(HAVE_LIBCOMP)

View File

@ -21,7 +21,7 @@
#include <sys/types.h>
#include <sys/stat.h>
#if defined(__APPLE__) || defined(__unix__) || defined(__riscos__)
#ifndef _WIN32
# include <utime.h>
# include <unistd.h>
#endif