From 8ab6f9067412d9f73fe88d42d81c0b4c4f1fd20b Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Thu, 25 Dec 2014 23:29:19 +0200 Subject: py: Move to guarded includes for compile.h and related headers. --- py/compile.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'py/compile.h') diff --git a/py/compile.h b/py/compile.h index cef20efce..9d612da53 100644 --- a/py/compile.h +++ b/py/compile.h @@ -23,6 +23,12 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ +#ifndef __MICROPY_INCLUDED_PY_COMPILE_H__ +#define __MICROPY_INCLUDED_PY_COMPILE_H__ + +#include "py/lexer.h" +#include "py/parse.h" +#include "py/emitglue.h" // These must fit in 8 bits; see scope.h enum { @@ -38,3 +44,5 @@ mp_obj_t mp_compile(mp_parse_node_t pn, qstr source_file, uint emit_opt, bool is // this is implemented in runtime.c mp_obj_t mp_parse_compile_execute(mp_lexer_t *lex, mp_parse_input_kind_t parse_input_kind, mp_obj_dict_t *globals, mp_obj_dict_t *locals); + +#endif // __MICROPY_INCLUDED_PY_COMPILE_H__ -- cgit v1.2.3