Commit 2e72fde1 authored by Bodo Möller's avatar Bodo Möller
Browse files

As in the main branch, there's no longer a need to guess the bc

version at compile time.
parent aa9be090
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -107,11 +107,9 @@ static const char rnd_seed[] = "string to make the random number generator think
static void message(BIO *out, char *m)
	{
	fprintf(stderr, "test %s\n", m);
#if defined(linux) || defined(__FreeBSD__) /* can we use GNU bc features? */
	BIO_puts(out, "print \"test ");
	BIO_puts(out, m);
	BIO_puts(out, "\\n\"\n");
#endif
	}

int main(int argc, char *argv[])