summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>2003-06-26 22:40:28 +0000
committerJason Wright <jason@cvs.openbsd.org>2003-06-26 22:40:28 +0000
commit461d09eecf18e5414b3ac2f96178f0a782d760e6 (patch)
treefe68b6203262ea92e24a6e8f0097b5f4f0f38c0b /include
parentf52811e0f64ded1787e6b982ff1191045a56e307 (diff)
Better value for vax MAXFLOAT
Diffstat (limited to 'include')
-rw-r--r--include/math.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/math.h b/include/math.h
index 398dd3b84e1..135875ed834 100644
--- a/include/math.h
+++ b/include/math.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: math.h,v 1.7 2003/06/26 22:27:14 jason Exp $ */
+/* $OpenBSD: math.h,v 1.8 2003/06/26 22:40:27 jason Exp $ */
/*
* ====================================================
* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
@@ -42,7 +42,7 @@ extern char __infinity[];
#define M_SQRT1_2 0.70710678118654752440 /* 1/sqrt(2) */
#ifdef __vax__
-#define MAXFLOAT ((float)1.7e38)
+#define MAXFLOAT ((float)1.70141173319264430e+38)
#else
#define MAXFLOAT ((float)3.40282346638528860e+38)
#endif