diff options
author | 1999-06-03 21:52:02 +0000 | |
---|---|---|
committer | 1999-06-03 21:52:02 +0000 | |
commit | 3e65b393a47d7b841bfa7c01f04bbc495099aaaf (patch) | |
tree | a9a5de1c3461d1547840c87bfb3a45aa125ca774 | |
parent | Same problem as i386, same fix. From Theo. (diff) | |
download | wireguard-openbsd-3e65b393a47d7b841bfa7c01f04bbc495099aaaf.tar.xz wireguard-openbsd-3e65b393a47d7b841bfa7c01f04bbc495099aaaf.zip |
Repair amiga builds (int schedules need some machine-specific macros)
-rw-r--r-- | sys/net/if_bridge.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/net/if_bridge.c b/sys/net/if_bridge.c index f014bd5847c..e4d9002964a 100644 --- a/sys/net/if_bridge.c +++ b/sys/net/if_bridge.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bridge.c,v 1.9 1999/05/24 23:09:10 jason Exp $ */ +/* $OpenBSD: if_bridge.c,v 1.10 1999/06/03 21:52:02 espie Exp $ */ /* * Copyright (c) 1999 Jason L. Wright (jason@thought.net) @@ -43,6 +43,7 @@ #include <sys/errno.h> #include <sys/device.h> #include <sys/kernel.h> +#include <machine/cpu.h> #include <net/if.h> #include <net/if_types.h> |