From: Tor Lillqvist Date: Fri, 29 Jan 2010 09:56:24 +0000 (+0200) Subject: Use _WIN32 instead of WIN32 X-Git-Tag: archive/raspbian/1%0.1.106-3+rpi1^2~15^2~21^2~739 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=0f38fb3618483bba37ab33abae53691322193776;p=babl.git Use _WIN32 instead of WIN32 --- diff --git a/babl/babl-mutex.h b/babl/babl-mutex.h index 1636da3..99fdbaa 100644 --- a/babl/babl-mutex.h +++ b/babl/babl-mutex.h @@ -19,14 +19,14 @@ #ifndef _BABL_MUTEX_H #define _BABL_MUTEX_H -#ifndef WIN32 +#ifndef _WIN32 #define __USE_GNU 1 #include #else #include #endif -#ifdef WIN32 +#ifdef _WIN32 typedef CRITICAL_SECTION BablMutex; #else typedef pthread_mutex_t BablMutex;