search for: 1559f8f5

Displaying 1 result from an estimated 1 matches for "1559f8f5".

2017 Nov 03
1
[PATCH] Check for _WIN32 instead of WIN32 in preprocessor checks
...5264e666..f6eb3f6e 100644 --- a/libspeex/stack_alloc.h +++ b/libspeex/stack_alloc.h @@ -36,7 +36,7 @@ #define STACK_ALLOC_H #ifdef USE_ALLOCA -# ifdef WIN32 +# ifdef _WIN32 # include <malloc.h> # else # ifdef HAVE_ALLOCA_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 @@ #de...