diff options
author | Damien George <damien.p.george@gmail.com> | 2019-10-07 11:56:24 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-12-12 20:15:28 +1100 |
commit | 360d972c16dd818462be7699badb6478639924c1 (patch) | |
tree | 205c5021c69ce41b4b3b8b5101bcd9975709824c /py/emitnx86.c | |
parent | b47e155bd07e5765b804c404411825b15378c0b6 (diff) | |
download | micropython-360d972c16dd818462be7699badb6478639924c1.tar.gz micropython-360d972c16dd818462be7699badb6478639924c1.zip |
py/nativeglue: Add new header file with native function table typedef.
Diffstat (limited to 'py/emitnx86.c')
-rw-r--r-- | py/emitnx86.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/emitnx86.c b/py/emitnx86.c index 790cae04c2..f0553f0682 100644 --- a/py/emitnx86.c +++ b/py/emitnx86.c @@ -1,7 +1,7 @@ // x86 specific stuff #include "py/mpconfig.h" -#include "py/runtime0.h" +#include "py/nativeglue.h" #if MICROPY_EMIT_X86 |