summaryrefslogtreecommitdiff
path: root/lib/libc/arch/sparc64/gen/isinf.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/arch/sparc64/gen/isinf.c')
-rw-r--r--lib/libc/arch/sparc64/gen/isinf.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/libc/arch/sparc64/gen/isinf.c b/lib/libc/arch/sparc64/gen/isinf.c
index 2bdf5bda0fa..1bd6b1d4e92 100644
--- a/lib/libc/arch/sparc64/gen/isinf.c
+++ b/lib/libc/arch/sparc64/gen/isinf.c
@@ -1,4 +1,5 @@
-/* $OpenBSD: isinf.c,v 1.1 2001/08/29 01:41:29 art Exp $ */
+/* $OpenBSD: isinf.c,v 1.2 2001/09/10 22:38:11 millert Exp $ */
+
/*
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
@@ -36,6 +37,10 @@
* SUCH DAMAGE.
*/
+#if defined(LIBC_SCCS) && !defined(lint)
+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>
#include <machine/ieee.h>
@@ -43,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);