replace remaining WIN32 platform macros

see the commit HEAD@{2}
This commit is contained in:
Martin Pulec
2024-05-13 10:42:26 +02:00
parent 97cef055e6
commit 56a6dc78b0
36 changed files with 110 additions and 113 deletions

View File

@@ -70,7 +70,7 @@ static void _dprintf(const char *format, ...)
return;
}
#ifdef WIN32
#ifdef _WIN32
char msg[65535];
va_list ap;
@@ -84,7 +84,7 @@ static void _dprintf(const char *format, ...)
va_start(ap, format);
vfprintf(stderr, format, ap);
va_end(ap);
#endif /* WIN32 */
#endif /* _WIN32 */
}
static void