summaryrefslogtreecommitdiffstats
path: root/crypto/bn/divtest.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/bn/divtest.c')
-rw-r--r--crypto/bn/divtest.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/crypto/bn/divtest.c b/crypto/bn/divtest.c
index 60b3d662d9..13ba86e3c4 100644
--- a/crypto/bn/divtest.c
+++ b/crypto/bn/divtest.c
@@ -1,13 +1,14 @@
#include <openssl/bn.h>
+#include <openssl/rand.h>
-int rand(n)
+static int rand(n)
{
unsigned char x[2];
- RAND_pseudo_bytes(&x,2);
+ RAND_pseudo_bytes(x,2);
return (x[0] + 2*x[1]);
}
-void bug(char *m, BIGNUM *a, BIGNUM *b)
+static void bug(char *m, BIGNUM *a, BIGNUM *b)
{
printf("%s!\na=",m);
BN_print_fp(stdout, a);