From 56a6a0b0b41ed2c3cfd11bc103a81099155f8244 Mon Sep 17 00:00:00 2001 From: Alex Shinn Date: Fri, 1 Sep 2017 16:56:26 +0900 Subject: [PATCH] fixing asin/acos when complex numbers are disabled --- eval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eval.c b/eval.c index 10418385..90c0b564 100644 --- a/eval.c +++ b/eval.c @@ -1495,7 +1495,7 @@ sexp sexp_register_optimization (sexp ctx, sexp self, sexp_sint_t n, sexp f, sex return sexp_make_flonum(ctx, cname(d)); \ } -#ifdef SEXP_USE_COMPLEX +#if SEXP_USE_COMPLEX #define define_complex_math_op(name, cname, f, a, b) \ sexp name (sexp ctx, sexp self, sexp_sint_t n, sexp z) { \ double d; \