1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-27 12:22:24 +00:00

Correct declaration mismatch for Event_Req between xc.c and other (correct) sites

This commit is contained in:
Nick Briggs
2021-07-05 14:10:38 -07:00
parent 2de44247b5
commit 934b15b63b

View File

@@ -20,6 +20,7 @@
/* */
/************************************************************************/
#include <signal.h>
#include <stdint.h>
#include <stdio.h>
#include <sys/types.h>
@@ -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 */