diff options
author | Damien <damien.p.george@gmail.com> | 2013-10-12 16:53:13 +0100 |
---|---|---|
committer | Damien <damien.p.george@gmail.com> | 2013-10-12 16:53:13 +0100 |
commit | 3ef4abb446dfcbdbc426a0921a33e0883607e677 (patch) | |
tree | d8eed3024110a108de0f22aca783fa471e3c7137 /py/emitcpy.c | |
parent | 0efb3a1b66278f31da3e36223bc1429ab5fa7e2c (diff) |
Change ifdef/if defined to simple if's.
Diffstat (limited to 'py/emitcpy.c')
-rw-r--r-- | py/emitcpy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/emitcpy.c b/py/emitcpy.c index 596e04eb8..6e3543da3 100644 --- a/py/emitcpy.c +++ b/py/emitcpy.c @@ -14,7 +14,7 @@ #include "runtime.h" #include "emit.h" -#ifdef MICROPY_EMIT_ENABLE_CPYTHON +#if MICROPY_EMIT_CPYTHON struct _emit_t { int pass; @@ -925,4 +925,4 @@ const emit_method_table_t emit_cpython_method_table = { emit_cpy_yield_from, }; -#endif // MICROPY_EMIT_ENABLE_CPYTHON +#endif // MICROPY_EMIT_CPYTHON |