use anonymous struct

This commit is contained in:
Francois Perrad 2019-05-14 18:44:01 +02:00
parent ea3afecc67
commit 62602414fb

View File

@ -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;