Skip to content

Instantly share code, notes, and snippets.

@iomonad
Created November 9, 2017 17:55
Show Gist options
  • Save iomonad/d02b52320f45d9f27379e8dfdcc97167 to your computer and use it in GitHub Desktop.
Save iomonad/d02b52320f45d9f27379e8dfdcc97167 to your computer and use it in GitHub Desktop.
int my_rand(void)
{
static int x = 42;
return ((x = x * 214013 + 2531011) >> 16) & 0x7FFF;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment