summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1998-07-26 14:13:00 +0000
committermycroft <mycroft@NetBSD.org>1998-07-26 14:13:00 +0000
commit982e92002259a37c7be6623c4fb24985b315c4f5 (patch)
tree82729a8c6c9fca82c58bcdcbaf5e35eef741c50d /lib/libc/stdlib
parentea09e5f2d43afd7dbf3ecc3d85973a9f2443c8ec (diff)
const poisoning.
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r--lib/libc/stdlib/strtod.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdlib/strtod.c b/lib/libc/stdlib/strtod.c
index d3e950da32e..e1607611fc9 100644
--- a/lib/libc/stdlib/strtod.c
+++ b/lib/libc/stdlib/strtod.c
@@ -1,4 +1,4 @@
-/* $NetBSD: strtod.c,v 1.26 1998/02/03 18:44:21 perry Exp $ */
+/* $NetBSD: strtod.c,v 1.27 1998/07/26 14:13:00 mycroft Exp $ */
/****************************************************************
*
@@ -93,7 +93,7 @@
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: strtod.c,v 1.26 1998/02/03 18:44:21 perry Exp $");
+__RCSID("$NetBSD: strtod.c,v 1.27 1998/07/26 14:13:00 mycroft Exp $");
#endif /* LIBC_SCCS and not lint */
#if defined(__m68k__) || defined(__sparc__) || defined(__i386__) || \
@@ -705,7 +705,7 @@ pow5mult
{
Bigint *b1, *p5, *p51;
int i;
- static int p05[3] = { 5, 25, 125 };
+ static const int p05[3] = { 5, 25, 125 };
if ((i = k & 3) != 0)
b = multadd(b, p05[i-1], 0);