Anonymous - 2016-05-25

umm....
VS2010's _MSC_VER is 1600, it has no _Bool.
But stdbool.h make do not define it cause "#if _MSC_VER < 1600 typedef int8_t _Bool; #endif"
so I fix as "#if _MSC_VER < 1700 typedef int8_t _Bool; #endif"