diff options
author | Damien George <damien.p.george@gmail.com> | 2015-01-01 20:27:54 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-01-01 20:32:09 +0000 |
commit | 51dfcb4bb7613ed164952712d9a5235a7b833cde (patch) | |
tree | c1856c7db0ff6d5ae51190be4325804a0aad43f4 /py/objexcept.c | |
parent | db1ac360c39aeedd28b6ef5d653faaa14c3ce01e (diff) |
py: Move to guarded includes, everywhere in py/ core.
Addresses issue #1022.
Diffstat (limited to 'py/objexcept.c')
-rw-r--r-- | py/objexcept.c | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/py/objexcept.c b/py/objexcept.c index 4b8d6ea08..a60cbb82e 100644 --- a/py/objexcept.c +++ b/py/objexcept.c @@ -28,20 +28,13 @@ #include <stdarg.h> #include <assert.h> #include <stdio.h> -#include <stdint.h> - -#include "mpconfig.h" -#include "nlr.h" -#include "misc.h" -#include "qstr.h" -#include "obj.h" -#include "objlist.h" -#include "objstr.h" -#include "objtuple.h" -#include "objtype.h" -#include "runtime.h" -#include "runtime0.h" -#include "gc.h" + +#include "py/nlr.h" +#include "py/objlist.h" +#include "py/objstr.h" +#include "py/objtuple.h" +#include "py/objtype.h" +#include "py/gc.h" typedef struct _mp_obj_exception_t { mp_obj_base_t base; |