summaryrefslogtreecommitdiff
path: root/firmware/include/ctype.h
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2004-07-20 22:32:17 +0000
committerJens Arnold <amiconn@rockbox.org>2004-07-20 22:32:17 +0000
commit0258287e57d38499e8d78fd28bd17c60cc51323a (patch)
tree133c95a308e4715f5996bbdabadafc564705a462 /firmware/include/ctype.h
parentd0bb88a7665d5a94076f8612538b7459e6d59ead (diff)
downloadrockbox-0258287e57d38499e8d78fd28bd17c60cc51323a.tar.gz
rockbox-0258287e57d38499e8d78fd28bd17c60cc51323a.zip
Made the char property lookup table constant
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4905 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/include/ctype.h')
-rw-r--r--firmware/include/ctype.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/include/ctype.h b/firmware/include/ctype.h
index c72a256e4b..f884b09f81 100644
--- a/firmware/include/ctype.h
+++ b/firmware/include/ctype.h
@@ -39,7 +39,7 @@ int _EXFUN(_toupper, (int __c));
39#ifdef PLUGIN 39#ifdef PLUGIN
40#define _ctype_ (rb->_ctype_) 40#define _ctype_ (rb->_ctype_)
41#else 41#else
42extern char _ctype_[]; 42extern const char _ctype_[];
43#endif 43#endif
44 44
45#ifndef __cplusplus 45#ifndef __cplusplus