solaris support / attachments
Status: Inactive
Brought to you by:
jnekl
Solaris doesn't have a /dev/random device so the
random.c file will have to be re-written.
Since the function doesn't need *reall* random letters,
I've used something like this:
c = (char)(((random() / random()) % 57) + 26);
This will give random letters only (both upper and
lowercase). They are predictable, but who cares?