diff options
author | 2013-11-16 00:37:11 +0000 | |
---|---|---|
committer | 2013-11-16 00:37:11 +0000 | |
commit | 26de9129c48fec1d0d58ed1148e82cc2b6dddbdf (patch) | |
tree | 282777925705e84d7bbb4ff7d5e988489f5092d1 /lib/libkvm/kvm_udf.c | |
parent | Remove dead assignments and now unused variables. (diff) | |
download | wireguard-openbsd-26de9129c48fec1d0d58ed1148e82cc2b6dddbdf.tar.xz wireguard-openbsd-26de9129c48fec1d0d58ed1148e82cc2b6dddbdf.zip |
Prep for hidden visibility: move the vnode/file related function
declarations, including _kvm_getftype(), into a new header, kvm_file.h,
so that we don't have to pull <sys/vnode.h> into all the .c files. No
more extern function declaration in .c files.
ok millert@
Diffstat (limited to 'lib/libkvm/kvm_udf.c')
-rw-r--r-- | lib/libkvm/kvm_udf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libkvm/kvm_udf.c b/lib/libkvm/kvm_udf.c index 3907ebc5c13..94ce9b9c427 100644 --- a/lib/libkvm/kvm_udf.c +++ b/lib/libkvm/kvm_udf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kvm_udf.c,v 1.6 2013/10/22 16:40:27 guenther Exp $ */ +/* $OpenBSD: kvm_udf.c,v 1.7 2013/11/16 00:37:11 guenther Exp $ */ /* * Copyright (c) 2001, 2002 Scott Long <scottl@freebsd.org> @@ -44,6 +44,7 @@ #include <db.h> #include "kvm_private.h" +#include "kvm_file.h" /* Convert file entry permission (5 bits per owner/group/user) to a mode_t */ static mode_t |