summaryrefslogtreecommitdiff
path: root/firmware/include/ctype.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-07-12 11:06:38 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-07-12 11:06:38 +0000
commitdb4fb9558535d880179701d3bc7520bc8c7d69ce (patch)
treedd400df2c2bbea0629a5d56976c41dad3ebed2a8 /firmware/include/ctype.h
parent2d8fd9cf8af10471800745e50895c8e0d90c6bc8 (diff)
downloadrockbox-db4fb9558535d880179701d3bc7520bc8c7d69ce.tar.gz
rockbox-db4fb9558535d880179701d3bc7520bc8c7d69ce.zip
make the ctype array unsigned so that bit 7 (octal 0200) can be set and
used properly without warnings git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7120 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 f884b09f81..e0d20cc672 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 const char _ctype_[]; 42extern const unsigned char _ctype_[257];
43#endif 43#endif
44 44
45#ifndef __cplusplus 45#ifndef __cplusplus