1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

cpp: use #ifdef __MINGW32__ to avoid compiler complaints

... instead of just #if
This commit is contained in:
Daniel Stenberg 2013-04-06 00:55:27 +02:00
parent eeefcdff54
commit 6eb56e72de

View File

@ -55,7 +55,7 @@
#define EINVAL 22 /* errno.h value */ #define EINVAL 22 /* errno.h value */
#endif #endif
#if __MINGW32__ #ifdef __MINGW32__
#include <TlHelp32.h> #include <TlHelp32.h>
#endif #endif