1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

* scmsigs.c (s_scm_sigaction): guard the SIGIOT case with an

#ifdef -- it's missing on at least one platform.  (thanks to
Jan Nieuwenhuizen).
This commit is contained in:
Michael Livshin 2000-06-18 12:06:01 +00:00
parent 79494f15d3
commit 6732de1bdf
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2000-06-18 Michael Livshin <mlivshin@bigfoot.com>
* scmsigs.c (s_scm_sigaction): guard the SIGIOT case with an
#ifdef -- it's missing on at least one platform. (thanks to
Jan Nieuwenhuizen).
2000-06-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
* list.c (list*): Added documentation from common-list.scm.

View file

@ -300,7 +300,7 @@ SCM_DEFINE (scm_sigaction, "sigaction", 1, 2, 0,
case SIGSEGV:
case SIGBUS:
case SIGABRT:
#if SIGIOT != SIGABRT
#if defined(SIGIOT) && (SIGIOT != SIGABRT)
case SIGIOT:
#endif
case SIGTRAP: