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_private.h | |
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_private.h')
-rw-r--r-- | lib/libkvm/kvm_private.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libkvm/kvm_private.h b/lib/libkvm/kvm_private.h index e6718659f28..c1f8c6ee982 100644 --- a/lib/libkvm/kvm_private.h +++ b/lib/libkvm/kvm_private.h @@ -1,4 +1,4 @@ -/* $OpenBSD: kvm_private.h,v 1.19 2013/11/12 14:49:41 guenther Exp $ */ +/* $OpenBSD: kvm_private.h,v 1.20 2013/11/16 00:37:11 guenther Exp $ */ /* $NetBSD: kvm_private.h,v 1.7 1996/05/05 04:32:15 gwr Exp $ */ /*- @@ -102,6 +102,3 @@ void *_kvm_realloc(kvm_t *kd, void *, size_t); void _kvm_syserr(kvm_t *kd, const char *program, const char *fmt, ...); ssize_t _kvm_pread(kvm_t *, int, void *, size_t, off_t); ssize_t _kvm_pwrite(kvm_t *, int, const void *, size_t, off_t); -int _kvm_stat_cd9660(kvm_t *, struct kinfo_file *, struct vnode *); -int _kvm_stat_udf(kvm_t *, struct kinfo_file *, struct vnode *); -int _kvm_stat_ntfs(kvm_t *, struct kinfo_file *, struct vnode *); |