[BACK]Return to random.c CVS log [TXT][DIR] Up to [contributed] / early-roguelike / urogue

Annotation of early-roguelike/urogue/random.c, Revision 1.1

1.1     ! rubenllo    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: }

CVSweb