From 6b6e9bb7cbb29986c1b4fc22709b21dc0bfd5af3 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Fri, 4 Feb 2022 20:04:48 +0100 Subject: [PATCH] Enable log output (warning and error messages) on the Windows GUI --- src/maths/KLU/klusmp.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/maths/KLU/klusmp.c b/src/maths/KLU/klusmp.c index c75d162cd..a457ca660 100644 --- a/src/maths/KLU/klusmp.c +++ b/src/maths/KLU/klusmp.c @@ -17,6 +17,10 @@ extern double scalbn(double, int); extern double logb(double); #endif +#ifdef HAS_WINGUI +#include "ngspice/wstdio.h" +#endif + static void LoadGmin_CSC (double **diag, unsigned int n, double Gmin) ; static void LoadGmin (SMPmatrix *eMatrix, double Gmin) ;