diff options
author | Damien George <damien.p.george@gmail.com> | 2017-08-30 11:23:11 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-08-30 11:23:11 +1000 |
commit | d88eab7445a905ea04fd55e75e40934a9f9acd80 (patch) | |
tree | 194c6bc07e2e8e2cb2c09439e8408c651d9cdb7c | |
parent | c7d334e047ce5a36bd6d4979a5331719dd480a2b (diff) | |
download | micropython-d88eab7445a905ea04fd55e75e40934a9f9acd80.tar.gz micropython-d88eab7445a905ea04fd55e75e40934a9f9acd80.zip |
py/parse2.h: Update to work with new version, v1.9.2.
-rw-r--r-- | py/parse2.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/py/parse2.h b/py/parse2.h index f50af0df45..82d9639455 100644 --- a/py/parse2.h +++ b/py/parse2.h @@ -23,8 +23,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ -#ifndef __MICROPY_INCLUDED_PY_PARSE_H__ -#define __MICROPY_INCLUDED_PY_PARSE_H__ +#ifndef MICROPY_INCLUDED_PY_PARSE_H +#define MICROPY_INCLUDED_PY_PARSE_H #include <stddef.h> #include <stdint.h> @@ -130,4 +130,4 @@ typedef struct _mp_parse_t { mp_parse_tree_t mp_parse(struct _mp_lexer_t *lex, mp_parse_input_kind_t input_kind); void mp_parse_tree_clear(mp_parse_tree_t *tree); -#endif // __MICROPY_INCLUDED_PY_PARSE_H__ +#endif // MICROPY_INCLUDED_PY_PARSE_H |