Commit 62602414fb9ddb911b2796a68d74aa239aa48b13

Francois Perrad 2019-05-14T18:44:01

use anonymous struct

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/bn_s_mp_rand_jenkins.c b/bn_s_mp_rand_jenkins.c
index a914458..da0771c 100644
--- a/bn_s_mp_rand_jenkins.c
+++ b/bn_s_mp_rand_jenkins.c
@@ -5,7 +5,7 @@
 
 /* Bob Jenkins' http://burtleburtle.net/bob/rand/smallprng.html */
 /* Chosen for speed and a good "mix" */
-typedef struct ranctx {
+typedef struct {
    uint64_t a;
    uint64_t b;
    uint64_t c;