diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-11-19 06:18:27 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-11-19 06:18:27 +0000 |
commit | 49869db394db8732b558b73dfa9514c425c6cb0e (patch) | |
tree | 59c266fe0333a67f47dd18a2c4057eb38f494fe5 /sys | |
parent | f9bc0956e07ef31833451d6fe41b525e5f5a8570 (diff) |
remove forward declaration of struct mount
unneeded after uvm_vnp_sync() prototype moved to vnode.h in 2014
Diffstat (limited to 'sys')
-rw-r--r-- | sys/uvm/uvm_extern.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/uvm/uvm_extern.h b/sys/uvm/uvm_extern.h index 6c527d33762..efe4281b26c 100644 --- a/sys/uvm/uvm_extern.h +++ b/sys/uvm/uvm_extern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_extern.h,v 1.179 2024/11/01 20:26:18 mpi Exp $ */ +/* $OpenBSD: uvm_extern.h,v 1.180 2024/11/19 06:18:26 jsg Exp $ */ /* $NetBSD: uvm_extern.h,v 1.57 2001/03/09 01:02:12 chs Exp $ */ /* @@ -169,7 +169,6 @@ typedef int vm_prot_t; #ifdef _KERNEL struct buf; -struct mount; struct pglist; struct vmspace; struct pmap; |