Mercurial > hg > early-roguelike
comparison urogue/random.c @ 256:c495a4f288c6
Import UltraRogue from the Roguelike Restoration Project (r1490)
author | John "Elwin" Edwards |
---|---|
date | Tue, 31 Jan 2017 19:56:04 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
253:d9badb9c0179 | 256:c495a4f288c6 |
---|---|
1 /* | |
2 random.c - random and associated routines | |
3 | |
4 UltraRogue: The Ultimate Adventure in the Dungeons of Doom | |
5 Copyright (C) 1992, 1993, 1995 Herb Chong | |
6 All rights reserved. | |
7 | |
8 See the file LICENSE.TXT for full copyright and licensing information. | |
9 */ | |
10 | |
11 #include "rogue.h" | |
12 | |
13 void | |
14 ur_srandom(unsigned x) | |
15 { | |
16 md_srandom(x); | |
17 } | |
18 | |
19 long | |
20 ur_random(void) | |
21 { | |
22 return( md_random() ); | |
23 } |