Integrate cesanta/dev#1074 - Fix typedef bool for MSC

PUBLISHED_FROM=f52fe15edd617d9f1ba2aa4051c116e79671554d
This commit is contained in:
Sergey Lyubka 2020-02-21 14:22:23 +00:00
parent b015e33ea5
commit 4e89eac8dd
2 changed files with 2 additions and 2 deletions

View File

@ -228,7 +228,7 @@
#include <windows.h>
#include <process.h>
#if _MSC_VER < 1700
#if defined(_MSC_VER) && (_MSC_VER < 1700)
typedef int bool;
#else
#include <stdbool.h>

View File

@ -50,7 +50,7 @@
#include <windows.h>
#include <process.h>
#if _MSC_VER < 1700
#if defined(_MSC_VER) && (_MSC_VER < 1700)
typedef int bool;
#else
#include <stdbool.h>