diff options
author | 2015-02-11 01:36:13 +0000 | |
---|---|---|
committer | 2015-02-11 01:36:13 +0000 | |
commit | 90e5af88618daf2cdabf766c8d8ef6fdbbd7fd04 (patch) | |
tree | 982589a751957ecf0136e93f50c7a0d9f7026230 | |
parent | Catch up with the new taskq_create(9) API. (diff) | |
download | wireguard-openbsd-90e5af88618daf2cdabf766c8d8ef6fdbbd7fd04.tar.xz wireguard-openbsd-90e5af88618daf2cdabf766c8d8ef6fdbbd7fd04.zip |
Needs <sys/atomic.h> now.
-rw-r--r-- | sys/arch/hppa/hppa/intr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/hppa/hppa/intr.c b/sys/arch/hppa/hppa/intr.c index 69724de7419..5c1c1bf86b7 100644 --- a/sys/arch/hppa/hppa/intr.c +++ b/sys/arch/hppa/hppa/intr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.c,v 1.44 2014/07/12 18:44:41 tedu Exp $ */ +/* $OpenBSD: intr.c,v 1.45 2015/02/11 01:36:13 miod Exp $ */ /* * Copyright (c) 2002-2004 Michael Shalayeff @@ -32,6 +32,7 @@ #include <sys/device.h> #include <sys/evcount.h> #include <sys/malloc.h> +#include <sys/atomic.h> #include <uvm/uvm_extern.h> |