diff options
author | gene <gene@cvs.openbsd.org> | 1997-06-26 22:00:56 +0000 |
---|---|---|
committer | gene <gene@cvs.openbsd.org> | 1997-06-26 22:00:56 +0000 |
commit | f17cbcd6bbacf336c4adf87906ca7acb1dead6da (patch) | |
tree | f4145e5f8d35d6ba512ac6f3ebcab23c406a18f9 /sys | |
parent | 7c3e2538957cc21df6f876b8d2c28b2f5413821e (diff) |
Hard-code definition of HZ if undefined (not spec'ed in an 'option'
statement). This is fallout from the recent config changes; pointed out by
Steven Campbel.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/mac68k/mac68k/clockreg.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/mac68k/mac68k/clockreg.h b/sys/arch/mac68k/mac68k/clockreg.h index f92683edccb..88107c0104c 100644 --- a/sys/arch/mac68k/mac68k/clockreg.h +++ b/sys/arch/mac68k/mac68k/clockreg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: clockreg.h,v 1.4 1996/05/26 18:36:15 briggs Exp $ */ +/* $OpenBSD: clockreg.h,v 1.5 1997/06/26 22:00:55 gene Exp $ */ /* $NetBSD: clockreg.h,v 1.5 1996/04/01 05:16:52 scottr Exp $ */ /*- @@ -40,6 +40,9 @@ */ +#ifndef HZ +#define HZ 60 /* Seems to be universal for mac68k */ +#endif #define CLK_SPEED 0.0000012766 /* time to complete a clock (3 MHz) */ /* |