summaryrefslogtreecommitdiff
path: root/firmware/include
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
parentd0bb88a7665d5a94076f8612538b7459e6d59ead (diff)
downloadrockbox-0258287e57d38499e8d78fd28bd17c60cc51323a.zip
rockbox-0258287e57d38499e8d78fd28bd17c60cc51323a.tar.gz
rockbox-0258287e57d38499e8d78fd28bd17c60cc51323a.tar.bz2
rockbox-0258287e57d38499e8d78fd28bd17c60cc51323a.tar.xz
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')
-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 c72a256..f884b09 100644
--- a/firmware/include/ctype.h
+++ b/firmware/include/ctype.h
@@ -39,7 +39,7 @@ int _EXFUN(_toupper, (int __c));
#ifdef PLUGIN
#define _ctype_ (rb->_ctype_)
#else
-extern char _ctype_[];
+extern const char _ctype_[];
#endif
#ifndef __cplusplus