summaryrefslogtreecommitdiffstatshomepage
path: root/py/unicode.c
diff options
context:
space:
mode:
Diffstat (limited to 'py/unicode.c')
-rw-r--r--py/unicode.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/py/unicode.c b/py/unicode.c
index 52bc9b9f60..a20527cb2b 100644
--- a/py/unicode.c
+++ b/py/unicode.c
@@ -1,6 +1,7 @@
#include <stdint.h>
#include "misc.h"
+#include "mpconfig.h"
// attribute flags
#define FL_PRINT (0x01)
@@ -19,7 +20,7 @@
#define AT_LO (FL_LOWER | FL_ALPHA | FL_PRINT)
// table of attributes for ascii characters
-static const uint8_t attr[] = {
+STATIC const uint8_t attr[] = {
0, 0, 0, 0, 0, 0, 0, 0,
0, AT_SP, AT_SP, AT_SP, 0, AT_SP, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,