Seed command fully implemented but apparently buggy.

Dwarf appearance is not yet reproducible.
This commit is contained in:
Eric S. Raymond 2017-05-24 09:06:41 -04:00
parent 65c081a0ac
commit cf219e920b
4 changed files with 19 additions and 9 deletions

2
misc.h
View file

@ -72,6 +72,6 @@ extern long fIABS(long);
#define IABS(N) fIABS(N)
extern long fMOD(long,long);
#define MOD(N,M) fMOD(N,M)
extern void set_seed_from_time(void);
extern void set_seed(long);
extern unsigned long get_next_lcg_value(void);
extern long randrange(long);