summaryrefslogtreecommitdiffstatshomepage
path: root/py/lexerunix.h
diff options
context:
space:
mode:
authorian-v <ianv888@gmail.com>2014-01-06 13:51:53 -0800
committerian-v <ianv888@gmail.com>2014-01-06 13:51:53 -0800
commit5fd8fd2c16076f683b629b513e8865e461d4c9a8 (patch)
tree9f10aab33ca9b4325cbe84c41b1e4d614d202021 /py/lexerunix.h
parent7a16fadbf843ca5d49fb20b5f5785ffccfd9019f (diff)
downloadmicropython-5fd8fd2c16076f683b629b513e8865e461d4c9a8.tar.gz
micropython-5fd8fd2c16076f683b629b513e8865e461d4c9a8.zip
Revert MP_BOOL, etc. and use <stdbool.h> instead
Diffstat (limited to 'py/lexerunix.h')
-rw-r--r--py/lexerunix.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/lexerunix.h b/py/lexerunix.h
index 3054ecd8a4..b422a43062 100644
--- a/py/lexerunix.h
+++ b/py/lexerunix.h
@@ -1,4 +1,4 @@
-mp_lexer_t *mp_lexer_new_from_str_len(const char *src_name, const char *str, uint len, MP_BOOL free_str);
+mp_lexer_t *mp_lexer_new_from_str_len(const char *src_name, const char *str, uint len, bool free_str);
mp_lexer_t *mp_lexer_new_from_file(const char *filename);
void mp_import_set_directory(const char *dir);