summaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-02-06 23:33:06 +0000
committerUlf Möller <ulf@openssl.org>2000-02-06 23:33:06 +0000
commit4e539aaa1e3abd8ad3f102bf8d346260835ea0b8 (patch)
tree1871b6988fa137ef99b67e6947d33b5b34dcc4bd /crypto
parent4facdbb5fa9d791fc72dc78b9c3512ea1384df33 (diff)
downloadopenssl-new-4e539aaa1e3abd8ad3f102bf8d346260835ea0b8.tar.gz
"print" is GNU bc specific.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/bn/bntest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bntest.c b/crypto/bn/bntest.c
index a3d6420b13..8b3f9ead3e 100644
--- a/crypto/bn/bntest.c
+++ b/crypto/bn/bntest.c
@@ -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");