diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2013-11-16 00:37:12 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2013-11-16 00:37:12 +0000 |
commit | b4599c92642ca98cf955fdb877f6875427479143 (patch) | |
tree | 4ff55b4ce42011e8d073ce9aa97325686cd33467 /lib/libkvm/kvm_ntfs.c | |
parent | 5d2377e4dc12d6196c4d8806f8a8aae07591d18c (diff) |
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_ntfs.c')
-rw-r--r-- | lib/libkvm/kvm_ntfs.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libkvm/kvm_ntfs.c b/lib/libkvm/kvm_ntfs.c index f8530771ec0..90ebb43d4f9 100644 --- a/lib/libkvm/kvm_ntfs.c +++ b/lib/libkvm/kvm_ntfs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kvm_ntfs.c,v 1.3 2013/10/22 16:40:27 guenther Exp $ */ +/* $OpenBSD: kvm_ntfs.c,v 1.4 2013/11/16 00:37:11 guenther Exp $ */ /*- * Copyright (c) 1999 The NetBSD Foundation, Inc. @@ -45,8 +45,7 @@ #include <db.h> #include "kvm_private.h" - -extern mode_t _kvm_getftype(enum vtype); +#include "kvm_file.h" int _kvm_stat_ntfs(kvm_t *kd, struct kinfo_file *kf, struct vnode *vp) |