summaryrefslogtreecommitdiffstatshomepage
path: root/py/pfenv.h
diff options
context:
space:
mode:
Diffstat (limited to 'py/pfenv.h')
-rw-r--r--py/pfenv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/pfenv.h b/py/pfenv.h
index 4c902c6bc2..2a3de6c32d 100644
--- a/py/pfenv.h
+++ b/py/pfenv.h
@@ -46,6 +46,6 @@ void pfenv_vstr_add_strn(void *data, const char *str, unsigned int len);
int pfenv_print_strn(const pfenv_t *pfenv, const char *str, unsigned int len, int flags, char fill, int width);
int pfenv_print_int(const pfenv_t *pfenv, machine_uint_t x, int sgn, int base, int base_char, int flags, char fill, int width);
int pfenv_print_mp_int(const pfenv_t *pfenv, mp_obj_t x, int sgn, int base, int base_char, int flags, char fill, int width);
-#if MICROPY_ENABLE_FLOAT
+#if MICROPY_PY_BUILTINS_FLOAT
int pfenv_print_float(const pfenv_t *pfenv, mp_float_t f, char fmt, int flags, char fill, int width, int prec);
#endif