Add missing math.h include

Fix RCSID's
This commit is contained in:
christos 1997-07-13 18:42:29 +00:00
parent f6ff6c08f8
commit 24329bd304
1 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,4 @@
/* $NetBSD: frexp.c,v 1.2 1997/07/13 18:42:29 christos Exp $ */
/*
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
@ -35,13 +36,18 @@
* SUCH DAMAGE.
*
* from: Header: frexp.c,v 1.1 91/07/07 04:45:01 torek Exp
* $Id: frexp.c,v 1.1 1993/10/07 00:21:33 cgd Exp $
*/
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
#if 0
static char sccsid[] = "@(#)frexp.c 8.1 (Berkeley) 6/4/93";
#else
__RCSID("$NetBSD: frexp.c,v 1.2 1997/07/13 18:42:29 christos Exp $");
#endif
#endif /* LIBC_SCCS and not lint */
#include <math.h>
#include <sys/types.h>
#include <machine/ieee.h>