From 9970ac6808b22e79d0702477a2a775ec4dde0c0f Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Mon, 19 Apr 2021 22:38:29 -0700 Subject: [PROPOSED 1/2] Include signal.h in zic MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * zic.c: Include signal.h. This is needed by the recent addition of signal-handling code; otherwise zic.c is not portable and doesn’t compile under Microsoft Windows, and it’s a bit surprising that it compiled with no problems under GNU/Linux. Problem reported by Manuela Friedrich and Steve Shuriff. --- zic.c | 1 + 1 file changed, 1 insertion(+) diff --git a/zic.c b/zic.c index 2cdbf80..9007240 100644 --- a/zic.c +++ b/zic.c @@ -17,6 +17,7 @@ #include #include +#include #include #include #include -- 2.27.0