home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1998 #2 / amigaacscoverdisc1998-021998.iso / utilities / shareware / gfxboard / rtgmaster_dev / demos / moon / random.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-03-06  |  378 b   |  9 lines

  1. //----------------------------------------------------------------------------
  2. // Borland C++ compatible random functions:
  3. //----------------------------------------------------------------------------
  4.  
  5. #define  randomize() srand ( time (NULL) )
  6. //#define  random(num) (int)(((long)rand()*(num))/(RAND_MAX+1))
  7. #define  random(num) (int)(((long)(rand()%65535)*(num))/(65535+1))
  8.  
  9.