summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-06-17 13:51:51 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-06-17 13:51:51 +0000
commit980359f9243668008e3984352f7ad72b1113abbe (patch)
treeb74fd1f9d6ec82de5a5cc85b87e64041231a85fb
parentaca6b2ef22a119780b1197f3c6c85323ca228f0e (diff)
downloadrockbox-980359f9243668008e3984352f7ad72b1113abbe.tar.gz
rockbox-980359f9243668008e3984352f7ad72b1113abbe.zip
fix ctype extern
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1046 a1c6a512-1295-4272-9138-f99709370657
-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 18dd02f707..b6d8a43492 100644
--- a/firmware/include/ctype.h
+++ b/firmware/include/ctype.h
@@ -36,7 +36,7 @@ int _EXFUN(_toupper, (int __c));
36#define _X 0100 36#define _X 0100
37#define _B 0200 37#define _B 0200
38 38
39extern __IMPORT _CONST char _ctype_[]; 39extern char _ctype_[];
40 40
41#ifndef __cplusplus 41#ifndef __cplusplus
42#define isalpha(c) ((_ctype_+1)[(unsigned)(c)]&(_U|_L)) 42#define isalpha(c) ((_ctype_+1)[(unsigned)(c)]&(_U|_L))