home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_04 / 1004020c < prev    next >
Text File  |  1992-03-04  |  126b  |  7 lines

  1. /* srand function */ #include <stdlib.h>
  2.  
  3. void (srand)(unsigned int seed)
  4.     {    /* alter the seed */
  5.     _Randseed = seed;
  6.     }
  7.