summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/common/ctype.c2
-rw-r--r--firmware/include/ctype.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/firmware/common/ctype.c b/firmware/common/ctype.c
index 5ec0af8add..651dacda86 100644
--- a/firmware/common/ctype.c
+++ b/firmware/common/ctype.c
@@ -1,6 +1,6 @@
1#include <ctype.h> 1#include <ctype.h>
2 2
3char _ctype_[257]={ 3const char _ctype_[257]={
4 0, 4 0,
5 _C, _C, _C, _C, _C, _C, _C, _C, 5 _C, _C, _C, _C, _C, _C, _C, _C,
6 _C, _C|_S, _C|_S, _C|_S, _C|_S, _C|_S, _C, _C, 6 _C, _C|_S, _C|_S, _C|_S, _C|_S, _C|_S, _C, _C,
diff --git a/firmware/include/ctype.h b/firmware/include/ctype.h
index c72a256e4b..f884b09f81 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 char _ctype_[]; 42extern const char _ctype_[];
43#endif 43#endif
44 44
45#ifndef __cplusplus 45#ifndef __cplusplus