From 68bd8ae5bd84af9ef55da0726731a0c5cd77e183 Mon Sep 17 00:00:00 2001 From: dwarning <> Date: Wed, 4 Dec 2024 15:58:11 +0100 Subject: [PATCH] mingw uses stdbool.h --- src/include/ngspice/bool.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/ngspice/bool.h b/src/include/ngspice/bool.h index 7f398d105..656e218d8 100644 --- a/src/include/ngspice/bool.h +++ b/src/include/ngspice/bool.h @@ -1,7 +1,7 @@ #ifndef ngspice_BOOL_H #define ngspice_BOOL_H -#if defined (__MINGW32__) || defined (_MSC_VER) +#if defined (_MSC_VER) #ifndef __cplusplus typedef int bool; #endif