summaryrefslogtreecommitdiff
path: root/lib/libc/arch/hppa/gen/isinf.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/arch/hppa/gen/isinf.c')
-rw-r--r--lib/libc/arch/hppa/gen/isinf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/arch/hppa/gen/isinf.c b/lib/libc/arch/hppa/gen/isinf.c
index 3b89f9d5198..1bd6b1d4e92 100644
--- a/lib/libc/arch/hppa/gen/isinf.c
+++ b/lib/libc/arch/hppa/gen/isinf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: isinf.c,v 1.1 1999/09/14 00:21:15 mickey Exp $ */
+/* $OpenBSD: isinf.c,v 1.2 2001/09/10 22:38:11 millert Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -38,7 +38,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: isinf.c,v 1.1 1999/09/14 00:21:15 mickey Exp $";
+static char rcsid[] = "$OpenBSD: isinf.c,v 1.2 2001/09/10 22:38:11 millert Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
@@ -48,7 +48,7 @@ int
isinf(d)
double d;
{
- register struct ieee_double *p = (struct ieee_double *)&d;
+ struct ieee_double *p = (struct ieee_double *)&d;
return (p->dbl_exp == DBL_EXP_INFNAN &&
p->dbl_frach == 0 && p->dbl_fracl == 0);