/* Link in this file for random number generation with rand() and seeding from the clock */ #include #include double ran1() { int rand(); return( rand()/(RAND_MAX+1.0) ); } void seedit( const char *flag) { FILE *fopen(), *pfseed; unsigned int seed2 ; if( flag[0] == 's' ) { srand( seed2 = time(NULL) ) ; printf("\n%d\n", seed2 ); } }