diff options
author | 2007-07-16 21:20:03 +0000 | |
---|---|---|
committer | 2007-07-16 21:20:03 +0000 | |
commit | fb5cd7a027da292082517b864cd647fafd7fe098 (patch) | |
tree | 10c55bb05dd808012e0d1fd1a0809126cf9a3a30 | |
parent | typo (diff) | |
download | wireguard-openbsd-fb5cd7a027da292082517b864cd647fafd7fe098.tar.xz wireguard-openbsd-fb5cd7a027da292082517b864cd647fafd7fe098.zip |
sizeof long double == sizeof double, deal with it; ok kettenis
-rw-r--r-- | sys/arch/hppa/include/float.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/arch/hppa/include/float.h b/sys/arch/hppa/include/float.h index 1ea81db85c4..a9f06b68e1a 100644 --- a/sys/arch/hppa/include/float.h +++ b/sys/arch/hppa/include/float.h @@ -1,4 +1,4 @@ -/* $OpenBSD: float.h,v 1.7 2004/05/21 22:54:15 todd Exp $ */ +/* $OpenBSD: float.h,v 1.8 2007/07/16 21:20:03 jason Exp $ */ /* * Copyright (c) 1989 Regents of the University of California. @@ -63,14 +63,14 @@ __END_DECLS #define DBL_MAX 1.7976931348623157E+308 #define DBL_MAX_10_EXP 308 -#define LDBL_MANT_DIG 113 -#define LDBL_EPSILON 1.9259299443872358530559779425849273E-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 +#define LDBL_MANT_DIG DBL_MANT_DIG +#define LDBL_EPSILON DBL_EPSILON +#define LDBL_DIG DBL_DIG +#define LDBL_MIN_EXP DBL_MIN_EXP +#define LDBL_MIN DBL_MIN +#define LDBL_MIN_10_EXP DBL_MIN_10_EXP +#define LDBL_MAX_EXP DBL_MAX_EXP +#define LDBL_MAX DBL_MAX +#define LDBL_MAX_10_EXP DBL_MAX_10_EXP #endif /* _MACHINE_FLOAT_H_ */ |