summaryrefslogtreecommitdiffstats
path: root/compat/strtoul.c
diff options
context:
space:
mode:
authornijtmans <nijtmans@noemail.net>2010-03-04 22:29:03 (GMT)
committernijtmans <nijtmans@noemail.net>2010-03-04 22:29:03 (GMT)
commit2796be24f99719f6a4a595cd522e5a084b09009a (patch)
tree20424fb33bacac14f3240a09effbc1b2e5476576 /compat/strtoul.c
parent6e9a0ed7259326dc66469c54b40a8d37caec780c (diff)
downloadtcl-2796be24f99719f6a4a595cd522e5a084b09009a.zip
tcl-2796be24f99719f6a4a595cd522e5a084b09009a.tar.gz
tcl-2796be24f99719f6a4a595cd522e5a084b09009a.tar.bz2
Split tommath stub lib source file
in separate file. Don't use -fvisibility=hidden for cygwin FossilOrigin-Name: c8722c8b57f1a834fb1e549481d82d45020e2632
Diffstat (limited to 'compat/strtoul.c')
-rw-r--r--compat/strtoul.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/compat/strtoul.c b/compat/strtoul.c
index 21ee445..0b2b625 100644
--- a/compat/strtoul.c
+++ b/compat/strtoul.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: strtoul.c,v 1.8 2008/04/27 22:21:28 dkf Exp $
+ * RCS: @(#) $Id: strtoul.c,v 1.9 2010/03/04 22:29:05 nijtmans Exp $
*/
#include "tclInt.h"
@@ -20,7 +20,7 @@
* characters).
*/
-static char cvtIn[] = {
+static const char cvtIn[] = {
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, /* '0' - '9' */
100, 100, 100, 100, 100, 100, 100, /* punctuation */
10, 11, 12, 13, 14, 15, 16, 17, 18, 19, /* 'A' - 'Z' */