Fixing sqrt for builds with bignums but no complex.

This commit is contained in:
ashinn 2013-03-23 21:13:11 +01:00
parent b3eab11692
commit ec8255a27b

2
eval.c
View file

@ -1382,7 +1382,7 @@ sexp sexp_log (sexp ctx, sexp self, sexp_sint_t n, sexp z) {
}
sexp sexp_sqrt (sexp ctx, sexp self, sexp_sint_t n, sexp z) {
#if SEXP_USE_COMPLEX
#if SEXP_USE_COMPLEX || SEXP_USE_BIGNUMS
int negativep = 0;
#endif
double d, r;