From 934b15b63b8ee5057922480d1b5d28c2a8e23a6e Mon Sep 17 00:00:00 2001 From: Nick Briggs Date: Mon, 5 Jul 2021 14:10:38 -0700 Subject: [PATCH] Correct declaration mismatch for Event_Req between xc.c and other (correct) sites --- src/xc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/xc.c b/src/xc.c index 5903f43..8370243 100644 --- a/src/xc.c +++ b/src/xc.c @@ -20,6 +20,7 @@ /* */ /************************************************************************/ +#include #include #include #include @@ -141,7 +142,7 @@ register LispPTR tscache asm("bx"); #define IVARL IVar #ifdef XWINDOW -extern int Event_Req; /* != 0 when it's time to check X events +extern volatile sig_atomic_t Event_Req; /* != 0 when it's time to check X events on machines that don't get them reliably (e.g. Suns running OpenWindows) */ #endif /* XWINDOW */