diff options
author | Greg Lehey <grog@FreeBSD.org> | 2001-01-04 06:58:01 +0000 |
---|---|---|
committer | Greg Lehey <grog@FreeBSD.org> | 2001-01-04 06:58:01 +0000 |
commit | 3aecce6126c0bc183d384f65fcc68d40d08a3b46 (patch) | |
tree | c883ea268fc7e5ecb983c0c1e064c71d41eca6fe /benchmarks | |
parent | Update checksum. (diff) |
Include sys/random.h, not machine/random.h.
This should fix the conditional build breakage introduced in revision
1.2
Notes
Notes:
svn path=/head/; revision=36764
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/rawio/files/patch-ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmarks/rawio/files/patch-ac b/benchmarks/rawio/files/patch-ac index 092386bf01d1..ee09eb5b439e 100644 --- a/benchmarks/rawio/files/patch-ac +++ b/benchmarks/rawio/files/patch-ac @@ -6,7 +6,7 @@ #include <signal.h> -#include "random.h" +#if !defined(__FreeBSD__) || !defined(__alpha__) -+#include <machine/random.h> ++#include <sys/random.h> +#endif /* submitted by Andy Doran <ad@psn.ie> */ |