aboutsummaryrefslogtreecommitdiff
path: root/py/nlr.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-11-05 21:16:41 +0000
committerDamien George <damien.p.george@gmail.com>2014-11-05 21:16:41 +0000
commit7860c2a68acd1ccd28cb4bb87819487fd6966a9e (patch)
treec18a1aa3d44b4f3f4510e1ff19eac166f15007dd /py/nlr.h
parentbe8e99c7d4ac4d46069a358436a7036a3066d0a9 (diff)
py: Fix some macros defines; cleanup some includes.
Diffstat (limited to 'py/nlr.h')
-rw-r--r--py/nlr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/nlr.h b/py/nlr.h
index cb2b53b85..32e4b7cb2 100644
--- a/py/nlr.h
+++ b/py/nlr.h
@@ -36,7 +36,7 @@ struct _nlr_buf_t {
// the entries here must all be machine word size
nlr_buf_t *prev;
void *ret_val;
-#if !MICROPY_NLR_SETJMP
+#if !defined(MICROPY_NLR_SETJMP) || !MICROPY_NLR_SETJMP
#if defined(__i386__)
void *regs[6];
#elif defined(__x86_64__)