Refs #281. Detect _WIN32 macro for Windows API.

http://www.mail-archive.com/bug-gnulib@gnu.org/msg05722.html
This commit is contained in:
Zhang Xianyi 2013-08-24 01:10:02 +08:00
parent 1569bf14f8
commit 52f587db7f
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ typedef struct blas_queue {
struct blas_queue *next;
#if defined( __WIN32__) || defined(__CYGWIN32__)
#if defined( __WIN32__) || defined(__CYGWIN32__) || defined(_WIN32)
CRITICAL_SECTION lock;
HANDLE finish;
#else