home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 9 / FreshFishVol9-CD2.bin / bbs / gnu / libnix-0.8-src.lha / libnix-0.8 / sources / nix / stdlib / rand.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-12  |  149 b   |  10 lines

  1. #include <stdlib.h>
  2.  
  3. static unsigned int a=1;
  4.  
  5. int rand(void)
  6. { return (a=a*1103515245+12345)%RAND_MAX; }
  7.  
  8. void srand(unsigned int seed)
  9. { a=seed; }
  10.