This commit is contained in:
Theo Buehler
2023-12-12 08:25:37 +01:00
3 changed files with 2 additions and 2 deletions

0
include/compat/pthread.h Executable file → Normal file
View File

View File

@@ -44,7 +44,7 @@ int posix_rename(const char *oldpath, const char *newpath);
#define rename(oldpath, newpath) posix_rename(oldpath, newpath)
#endif
#ifdef _MSC_VER
#if defined(_MSC_VER) && _MSC_VER < 1900
#define snprintf _snprintf
#endif