diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-06-17 13:51:51 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-06-17 13:51:51 +0000 |
commit | 980359f9243668008e3984352f7ad72b1113abbe (patch) | |
tree | b74fd1f9d6ec82de5a5cc85b87e64041231a85fb /firmware/include/ctype.h | |
parent | aca6b2ef22a119780b1197f3c6c85323ca228f0e (diff) |
fix ctype extern
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1046 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/include/ctype.h')
-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 18dd02f707..b6d8a43492 100644 --- a/firmware/include/ctype.h +++ b/firmware/include/ctype.h @@ -36,7 +36,7 @@ int _EXFUN(_toupper, (int __c)); #define _X 0100 #define _B 0200 -extern __IMPORT _CONST char _ctype_[]; +extern char _ctype_[]; #ifndef __cplusplus #define isalpha(c) ((_ctype_+1)[(unsigned)(c)]&(_U|_L)) |