Include rand.h so RAND_pseudo_bytes may be declared.
authorRichard Levitte <levitte@openssl.org>
Sun, 27 Feb 2000 22:57:53 +0000 (22:57 +0000)
committerRichard Levitte <levitte@openssl.org>
Sun, 27 Feb 2000 22:57:53 +0000 (22:57 +0000)
Remove one ampersand so the compiler may complain less.
Make rand() static so it will not conflict with the C RTL.
Make bug() static too, for good measure.

crypto/bn/divtest.c

index 60b3d662d95de30a97849213b7d63ccfc72f6172..13ba86e3c4e1433b8a2320a536d2616d84212cab 100644 (file)
@@ -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);