1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-17 08:33:48 +00:00

Remove the signal handler prototype that returns int. (#51)

These should return void and we no longer build for any OS where
an int is returned.
This commit is contained in:
Bruce Mitchener 2020-12-15 09:32:50 +07:00 committed by GitHub
parent 857100a29a
commit dba22abf93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -479,11 +479,7 @@ extern u_int LispWindowFd;
static struct sigvec timerv;
#endif /* SYSVSIGNALS */
#if (defined(OS4) || defined(SYSVONLY)) || defined(MACOSX) || defined(FREEBSD) || defined(OS5)
static void int_timer_service(int sig, int code, void *scp)
#else
static int int_timer_service(int sig, int code, void *scp)
#endif /* OS4 | SYSVONLY | MACOSX | FREEBSD */
{
/* this may have to do more in the future, like check for nested interrupts,
etc... */