[hpux] (srandom, random): HP-UX has had these for ages. Remove.

This commit is contained in:
Markus Armbruster 2005-03-11 17:05:19 +00:00
parent 9cd463f8bc
commit 6c7f707b76

View file

@ -33,24 +33,6 @@
#include "gen.h" #include "gen.h"
#ifdef hpux
void
srandom(unsigned int n)
{
extern void srand48();
srand48(n);
}
long
random(void)
{
extern long lrand48();
return (lrand48()); /* 5/28/91 by bailey@mcs.kent.edu */
}
#endif
int int
chance(double d) chance(double d)
{ {