"print" is GNU bc specific.
authorUlf Möller <ulf@openssl.org>
Sun, 6 Feb 2000 23:33:06 +0000 (23:33 +0000)
committerUlf Möller <ulf@openssl.org>
Sun, 6 Feb 2000 23:33:06 +0000 (23:33 +0000)
crypto/bn/bntest.c

index a3d6420b1350d15e6749b9ee0e1ae5e339fc3c08..8b3f9ead3ebda5d1824ab900d1b50ae7c6601d11 100644 (file)
@@ -107,7 +107,7 @@ static const char rnd_seed[] = "string to make the random number generator think
 void message(BIO *out, char *m)
        {
        fprintf(stderr, "test %s\n", m);
-#if 1
+#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");