untested FreeBSD compilation fix

this particular fix has been sitting around my inbox for a while although
we've had reports of FreeBSD build problems for a long time.  While it's
untested, it certainly looks like the unfixed system.h had a case that
could not be reached.  bsdi seems like it needs to be handled the same way.
This commit is contained in:
cohrs
2003-05-25 19:03:55 +00:00
parent 8fcb235336
commit 702c373619
2 changed files with 2 additions and 1 deletions

View File

@@ -79,7 +79,7 @@ typedef long off_t;
# if !defined(__SC__) && !defined(LINUX)
E long NDECL(random);
# endif
# if !defined(SUNOS4) || defined(RANDOM)
# if (!defined(SUNOS4) && !defined(bsdi) && !defined(__FreeBSD__)) || defined(RANDOM)
E void FDECL(srandom, (unsigned int));
# else
# if !defined(bsdi) && !defined(__FreeBSD__)