diff options
author | 2014-07-08 13:02:57 +0000 | |
---|---|---|
committer | 2014-07-08 13:02:57 +0000 | |
commit | 0569f4dcebd5b6300384aaa70a80dcd42e5b59b5 (patch) | |
tree | e3e4a3ce74d3a4a62e81a42cc8796bc5a4b16b99 /sys/ddb/db_usrreq.c | |
parent | make sure to clear the WAIT flag when cancelling the connector timeout. (diff) | |
download | wireguard-openbsd-0569f4dcebd5b6300384aaa70a80dcd42e5b59b5.tar.xz wireguard-openbsd-0569f4dcebd5b6300384aaa70a80dcd42e5b59b5.zip |
These do not need the extremely poorly named uvm/uvm_extern.h (which
pulls in the universe). occasionally they need sys/systm.h
Diffstat (limited to 'sys/ddb/db_usrreq.c')
-rw-r--r-- | sys/ddb/db_usrreq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_usrreq.c b/sys/ddb/db_usrreq.c index 7dc503f15a4..e7d77a35457 100644 --- a/sys/ddb/db_usrreq.c +++ b/sys/ddb/db_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_usrreq.c,v 1.15 2013/06/10 22:46:13 bluhm Exp $ */ +/* $OpenBSD: db_usrreq.c,v 1.16 2014/07/08 13:02:57 deraadt Exp $ */ /* * Copyright (c) 1996 Michael Shalayeff. All rights reserved. @@ -26,10 +26,10 @@ #include <sys/param.h> #include <sys/types.h> +#include <sys/systm.h> #include <sys/kernel.h> #include <sys/proc.h> #include <sys/tty.h> -#include <uvm/uvm_extern.h> #include <sys/sysctl.h> #include <dev/cons.h> |