diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-02-27 10:00:44 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-02-27 10:00:44 +0000 |
commit | 9eb2730eab81c7732ecd9727c64165cab01b0d2b (patch) | |
tree | 740f5b85a62a3aaf534f9a2d0da6cb2e80a28d2e /time/clocktest.c | |
parent | d7390a372fef23e78ff90d1a93eb6d5dc1d337f2 (diff) | |
download | glibc-9eb2730eab81c7732ecd9727c64165cab01b0d2b.tar.gz glibc-9eb2730eab81c7732ecd9727c64165cab01b0d2b.tar.xz glibc-9eb2730eab81c7732ecd9727c64165cab01b0d2b.zip |
Update.
1998-02-25 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * sysdeps/libm-ieee754/s_isnanl.c: Ignore the explicit integer bit. * sysdeps/libm-ieee754/s_isinfl.c: Likewise.
Diffstat (limited to 'time/clocktest.c')
-rw-r--r-- | time/clocktest.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/time/clocktest.c b/time/clocktest.c index 570c194a81..55852a314f 100644 --- a/time/clocktest.c +++ b/time/clocktest.c @@ -17,7 +17,11 @@ main (int argc, char ** argv) { clock_t start, stop; - signal(SIGALRM, alarm_handler); + if (signal(SIGALRM, alarm_handler) -- SIG_ERR) + { + perror ("signal"); + exit (1); + } alarm(1); start = clock (); while (!gotit); |