diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2005-07-12 11:06:38 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2005-07-12 11:06:38 +0000 |
| commit | db4fb9558535d880179701d3bc7520bc8c7d69ce (patch) | |
| tree | dd400df2c2bbea0629a5d56976c41dad3ebed2a8 /firmware/include | |
| parent | 2d8fd9cf8af10471800745e50895c8e0d90c6bc8 (diff) | |
| download | rockbox-db4fb9558535d880179701d3bc7520bc8c7d69ce.zip rockbox-db4fb9558535d880179701d3bc7520bc8c7d69ce.tar.gz rockbox-db4fb9558535d880179701d3bc7520bc8c7d69ce.tar.bz2 rockbox-db4fb9558535d880179701d3bc7520bc8c7d69ce.tar.xz | |
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')
| -rw-r--r-- | firmware/include/ctype.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/include/ctype.h b/firmware/include/ctype.h index f884b09..e0d20cc 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 const char _ctype_[]; +extern const unsigned char _ctype_[257]; #endif #ifndef __cplusplus |