fwosar

Untitled

Aug 28th, 2015
376
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. def msvcrt_rand(seed):
  2.    def rand():
  3.       rand.seed = (214013*rand.seed + 2531011) & 0x7fffffff
  4.       return rand.seed >> 16
  5.    rand.seed = seed
  6.    return rand
Advertisement
Add Comment
Please, Sign In to add comment