Not sure why that doesn't work

This commit is contained in:
K. Lange 2021-01-16 12:36:04 +09:00
parent 221e97e086
commit 97fd51651d
2 changed files with 2 additions and 2 deletions

View File

@ -1036,7 +1036,7 @@ struct syntax_definition {
{"python",syn_py_calculate, 1},
{"esh",syn_esh_calculate, 0},
#endif
{NULL, NULL, NULL},
{NULL, NULL, 0},
};
static struct syntax_definition * syntax;

View File

@ -199,7 +199,7 @@ KrkValue krk_module_onload_math(void) {
bind(pow);
bind(atan2);
bind(frexp);
#ifdef _math_isfinite
#ifdef isfinite
bind(isfinite);
bind(isinf);
bind(isnan);