#pragma once #include #include #define rol64(x, k) ((x) << (k) | ((x) >> (64-(k)))) typedef struct Rng { uint64 s[4]; } Rng; typedef struct Mix { uint64 s; } Mix; extern Rng rng·RNG;