There is no need to test for both _WIN32 and WIN32 as curl_setup.h
automatically defines the later if the first one is defined.
Also tests/server/util.c is only checking for WIN32 arouund the
implementation of win32_perror, so just defining _WIN32
would not be sufficient for a successful compilation.
Reviewed-by: Daniel Stenberg
Reviewed-by: Jay Satiro
Closes #8594
extern const char *cmdfile;
-#if defined(WIN32) || defined(_WIN32)
+#ifdef WIN32
#include <process.h>
#include <fcntl.h>
#undef perror
#define perror(m) win32_perror(m)
void win32_perror(const char *msg);
-#endif /* WIN32 or _WIN32 */
-#ifdef WIN32
void win32_init(void);
void win32_cleanup(void);
#endif /* WIN32 */