Add missing math.h include

Fix RCSID's
This commit is contained in:
christos 1997-07-13 18:43:18 +00:00
parent faa85c1edf
commit 43d6f49e0a
3 changed files with 26 additions and 4 deletions

View File

@ -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 <sys/cdefs.h>
#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 <math.h>
#include <sys/types.h>
#include <machine/ieee.h>

View File

@ -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 <sys/cdefs.h>
#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 <math.h>
#include <sys/types.h>
#include <machine/ieee.h>
#include <errno.h>

View File

@ -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 <sys/cdefs.h>
#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 <math.h>
/* ARGSUSED */
int
isnan(d)