search for: df61d4d0

Displaying 1 result from an estimated 1 matches for "df61d4d0".

2017 Nov 03
1
[PATCH] Check for _WIN32 instead of WIN32 in preprocessor checks
...CA_H diff --git a/src/skeleton.h b/src/skeleton.h index f07d7a3e..1559f8f5 100644 --- a/src/skeleton.h +++ b/src/skeleton.h @@ -10,7 +10,7 @@ extern "C" { #endif -#ifdef WIN32 +#ifdef _WIN32 #define snprintf _snprintf #endif diff --git a/tmv/config.h b/tmv/config.h index ea7abe1d..df61d4d0 100644 --- a/tmv/config.h +++ b/tmv/config.h @@ -4,7 +4,7 @@ #define USE_COMPACT_KISS_FFT //#define USE_KISS_FFT -#ifdef WIN32 +#ifdef _WIN32 //#define FIXED_POINT -- 2.13.6 (Apple Git-96)