1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-30 13:26:53 +00:00

correct signal handler type for MacOS and FreeBSD int_timer_service.

This commit is contained in:
Nick Briggs
2017-05-25 13:10:43 -07:00
parent a8fe2094fe
commit e859670886

View File

@@ -562,11 +562,11 @@ extern u_int LispWindowFd;
static struct sigvec timerv;
#endif /* SYSVSIGNALS */
#if (defined(OS4) || defined(SYSVONLY))
#if (defined(OS4) || defined(SYSVONLY)) || defined(MACOSX) ||defined(FREEBSD)
void int_timer_service(sig, code, scp)
#else
int int_timer_service(sig, code, scp)
#endif /* OS4 | SYSVONLY */
#endif /* OS4 | SYSVONLY | MACOSX | FREEBSD */
int sig, code;
struct sigcontext *scp;