home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / ansi / stdlib / rand.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-08  |  281 b   |  18 lines

  1. /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
  2. #include <stdlib.h>
  3.  
  4. static unsigned long long next = 0;
  5.  
  6. int
  7. rand(void)
  8. {
  9.   next = next * 0x5deece66dLL + 11;
  10.   return (int)((next >> 16) & RAND_MAX);
  11. }
  12.  
  13. void
  14. srand(unsigned seed)
  15. {
  16.   next = seed;
  17. }
  18.