move the float definitions all into <sparc/float.h> and make that

version work in either 32 or 64 bit mode.
This commit is contained in:
mrg 2008-10-25 09:23:50 +00:00
parent 4a4b68e004
commit 6c952c0d18
2 changed files with 37 additions and 27 deletions

View File

@ -1,3 +1,37 @@
/* $NetBSD: float.h,v 1.10 2003/05/12 15:22:55 kleink Exp $ */
/* $NetBSD: float.h,v 1.11 2008/10/25 09:23:50 mrg Exp $ */
#include <sys/float_ieee754.h>
#ifndef _SPARC_FLOAT_H_
#define _SPARC_FLOAT_H_
#ifdef _LP64
#define LDBL_MANT_DIG 113
#define LDBL_EPSILON 1.925929944387235853055977942584927319E-34L
#define LDBL_DIG 33
#define LDBL_MIN_EXP (-16381)
#define LDBL_MIN 3.3621031431120935062626778173217526026E-4932L
#define LDBL_MIN_10_EXP (-4931)
#define LDBL_MAX_EXP 16384
#define LDBL_MAX 1.1897314953572317650857593266280070162E4932L
#define LDBL_MAX_10_EXP 4932
#endif /* _LP64 */
#include <sys/float_ieee754.h>
#ifdef _LP64
#if !defined(_ANSI_SOURCE) && !defined(_POSIX_C_SOURCE) && \
!defined(_XOPEN_SOURCE) || \
((__STDC_VERSION__ - 0) >= 199901L) || \
((_POSIX_C_SOURCE - 0) >= 200112L) || \
((_XOPEN_SOURCE - 0) >= 600) || \
defined(_ISOC99_SOURCE) || defined(_NETBSD_SOURCE)
#define DECIMAL_DIG 36
#endif /* !defined(_ANSI_SOURCE) && ... */
#endif /* _LP64 */
#endif /* _SPARC64_FLOAT_H_ */

View File

@ -1,27 +1,3 @@
/* $NetBSD: float.h,v 1.7 2005/12/11 12:19:10 christos Exp $ */
/* $NetBSD: float.h,v 1.8 2008/10/25 09:23:50 mrg Exp $ */
#ifndef _SPARC64_FLOAT_H_
#define _SPARC64_FLOAT_H_
#define LDBL_MANT_DIG 113
#define LDBL_EPSILON 1.925929944387235853055977942584927319E-34L
#define LDBL_DIG 33
#define LDBL_MIN_EXP (-16381)
#define LDBL_MIN 3.3621031431120935062626778173217526026E-4932L
#define LDBL_MIN_10_EXP (-4931)
#define LDBL_MAX_EXP 16384
#define LDBL_MAX 1.1897314953572317650857593266280070162E4932L
#define LDBL_MAX_10_EXP 4932
#include <sys/float_ieee754.h>
#if !defined(_ANSI_SOURCE) && !defined(_POSIX_C_SOURCE) && \
!defined(_XOPEN_SOURCE) || \
((__STDC_VERSION__ - 0) >= 199901L) || \
((_POSIX_C_SOURCE - 0) >= 200112L) || \
((_XOPEN_SOURCE - 0) >= 600) || \
defined(_ISOC99_SOURCE) || defined(_NETBSD_SOURCE)
#define DECIMAL_DIG 36
#endif /* !defined(_ANSI_SOURCE) && ... */
#endif /* _SPARC64_FLOAT_H_ */
#include <sparc/float.h>