forked from len0rd/rockbox
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
This commit is contained in:
parent
2d8fd9cf8a
commit
db4fb95585
3 changed files with 20 additions and 20 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue