diff options
author | Mark H Weaver <mhw@netris.org> | 2014-02-03 23:09:23 -0500 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2014-02-03 23:09:23 -0500 |
commit | c8e839cfeb647aca034b9bcd5a321d419dedca1f (patch) | |
tree | 776f0656b93f2ab2fcc02d2f5629b31350f85ab7 | |
parent | 5e69ceb7a667377a61cb0c31d7ac20e245b3fafd (diff) | |
download | guile-c8e839cfeb647aca034b9bcd5a321d419dedca1f.tar.gz |
Don't check HAVE_ALARM, which no longer exists.
* libguile/scmsigs.c (scm_alarm): Remove check for HAVE_ALARM.
Conditionalize only on HAVE_DECL_ALARM.
-rw-r--r-- | libguile/scmsigs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/scmsigs.c b/libguile/scmsigs.c index 701beb56d..97435f49c 100644 --- a/libguile/scmsigs.c +++ b/libguile/scmsigs.c @@ -491,7 +491,7 @@ SCM_DEFINE (scm_restore_signals, "restore-signals", 0, 0, 0, } #undef FUNC_NAME -#if defined HAVE_ALARM && HAVE_DECL_ALARM +#if HAVE_DECL_ALARM SCM_DEFINE (scm_alarm, "alarm", 1, 0, 0, (SCM i), "Set a timer to raise a @code{SIGALRM} signal after the specified\n" |