diff options
author | 1997-06-26 22:00:55 +0000 | |
---|---|---|
committer | 1997-06-26 22:00:55 +0000 | |
commit | 0c010636d507026bfb4f5322904f077ad7459a3b (patch) | |
tree | 8666dd3cbca99a2bb4ebbfdd3b05f9ad2b2a6d3a | |
parent | typos; msaitoh@spa.is.uec.ac.jp (diff) | |
download | wireguard-openbsd-0c010636d507026bfb4f5322904f077ad7459a3b.tar.xz wireguard-openbsd-0c010636d507026bfb4f5322904f077ad7459a3b.zip |
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.
-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) */ /* |