From 43d6f49e0a3ccc6a8f56c9c923cba49c82918fb1 Mon Sep 17 00:00:00 2001 From: christos Date: Sun, 13 Jul 1997 18:43:18 +0000 Subject: [PATCH] Add missing math.h include Fix RCSID's --- lib/libc/arch/sparc/gen/isnan.c | 9 ++++++++- lib/libc/arch/sparc/gen/ldexp.c | 9 ++++++++- lib/libc/arch/vax/gen/isinf.c | 12 ++++++++++-- 3 files changed, 26 insertions(+), 4 deletions(-) diff --git a/lib/libc/arch/sparc/gen/isnan.c b/lib/libc/arch/sparc/gen/isnan.c index eb526ad64543..b1b57bf776cc 100644 --- a/lib/libc/arch/sparc/gen/isnan.c +++ b/lib/libc/arch/sparc/gen/isnan.c @@ -1,3 +1,5 @@ +/* $NetBSD: isnan.c,v 1.3 1997/07/13 18:43:18 christos Exp $ */ + /* * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -35,13 +37,18 @@ * SUCH DAMAGE. * * from: Header: isnan.c,v 1.1 91/07/08 19:03:34 torek Exp - * $Id: isnan.c,v 1.2 1996/02/05 04:31:30 jtc Exp $ */ +#include #if defined(LIBC_SCCS) && !defined(lint) +#if 0 static char sccsid[] = "@(#)isnan.c 8.1 (Berkeley) 6/4/93"; +#else +__RCSID("$NetBSD: isnan.c,v 1.3 1997/07/13 18:43:18 christos Exp $"); +#endif #endif /* LIBC_SCCS and not lint */ +#include #include #include diff --git a/lib/libc/arch/sparc/gen/ldexp.c b/lib/libc/arch/sparc/gen/ldexp.c index c31dfebc85ad..64228caa1db5 100644 --- a/lib/libc/arch/sparc/gen/ldexp.c +++ b/lib/libc/arch/sparc/gen/ldexp.c @@ -1,3 +1,5 @@ +/* $NetBSD: ldexp.c,v 1.2 1997/07/13 18:43:52 christos Exp $ */ + /* * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -35,13 +37,18 @@ * SUCH DAMAGE. * * from: Header: ldexp.c,v 1.1 91/07/07 04:28:19 torek Exp - * $Id: ldexp.c,v 1.1 1993/10/07 00:21:36 cgd Exp $ */ +#include #if defined(LIBC_SCCS) && !defined(lint) +#if 0 static const char sccsid[] = "@(#)ldexp.c 8.1 (Berkeley) 6/4/93"; +#else +__RCSID("$NetBSD: ldexp.c,v 1.2 1997/07/13 18:43:52 christos Exp $"); +#endif #endif /* LIBC_SCCS and not lint */ +#include #include #include #include diff --git a/lib/libc/arch/vax/gen/isinf.c b/lib/libc/arch/vax/gen/isinf.c index cbbaed14bfc0..c6ed5844ad04 100644 --- a/lib/libc/arch/vax/gen/isinf.c +++ b/lib/libc/arch/vax/gen/isinf.c @@ -1,3 +1,5 @@ +/* $NetBSD: isinf.c,v 1.3 1997/07/13 18:44:33 christos Exp $ */ + /*- * Copyright (c) 1991, 1993 * The Regents of the University of California. All rights reserved. @@ -31,11 +33,17 @@ * SUCH DAMAGE. */ +#include #if defined(LIBC_SCCS) && !defined(lint) -/* static char sccsid[] = "@(#)isinf.c 8.1 (Berkeley) 6/4/93"; */ -static char rcsid[] = "$NetBSD: isinf.c,v 1.2 1996/02/05 04:31:42 jtc Exp $"; +#if 0 +static char sccsid[] = "@(#)isinf.c 8.1 (Berkeley) 6/4/93"; +#else +__RCSID("$NetBSD: isinf.c,v 1.3 1997/07/13 18:44:33 christos Exp $"); +#endif #endif /* LIBC_SCCS and not lint */ +#include + /* ARGSUSED */ int isnan(d)