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

version at compile time.
This commit is contained in:
Bodo Möller 2001-01-18 12:41:25 +00:00
parent aa9be09088
commit 2e72fde15f

View file

@ -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[])