]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-10501: [mod_spandsp] Fix building spandsp lib on windows.
authorAndrey Volk <andywolk@gmail.com>
Fri, 14 Jul 2017 16:59:42 +0000 (19:59 +0300)
committerAndrey Volk <andywolk@gmail.com>
Fri, 14 Jul 2017 16:59:42 +0000 (19:59 +0300)
libs/spandsp/src/spandsp/stdbool.h

index 492f9c2ec62044405d375d06e1be5be7098a6245..2881e83068f1a88982949f8d3a4a165784097bd6 100644 (file)
@@ -39,7 +39,9 @@
 
 #if !defined(__cplusplus)
 
+#ifndef _MSC_VER 
 typedef int     _Bool;
+#endif
 typedef int     bool;
 #define false   0
 #define true    (!false)