1 /* $NetBSD: float.h,v 1.7 2005/12/11 12:17:37 christos Exp $ */ 2 3 #ifndef _HPPA_FLOAT_H_ 4 #define _HPPA_FLOAT_H_ 5 6 #ifdef _LP64 7 #define LDBL_MANT_DIG 113 8 #define LDBL_EPSILON 1.925929944387235853055977942584927319E-34L 9 #define LDBL_DIG 33 10 #define LDBL_MIN_EXP (-16381) 11 #define LDBL_MIN 3.3621031431120935062626778173217526026E-4932L 12 #define LDBL_MIN_10_EXP (-4931) 13 #define LDBL_MAX_EXP 16384 14 #define LDBL_MAX 1.1897314953572317650857593266280070162E4932L 15 #define LDBL_MAX_10_EXP 4932 16 #endif 17 18 #include <sys/float_ieee754.h> 19 20 #ifdef _LP64 21 #if !defined(_ANSI_SOURCE) && !defined(_POSIX_C_SOURCE) && \ 22 !defined(_XOPEN_SOURCE) || \ 23 ((__STDC_VERSION__ - 0) >= 199901L) || \ 24 ((_POSIX_C_SOURCE - 0) >= 200112L) || \ 25 ((_XOPEN_SOURCE - 0) >= 600) || \ 26 defined(_ISOC99_SOURCE) || defined(_NETBSD_SOURCE) 27 #define DECIMAL_DIG 36 28 #endif /* !defined(_ANSI_SOURCE) && ... */ 29 #endif /* _LP64 */ 30 31 #endif /* _HPPA_FLOAT_H_ */ 32