Forward declare struct vnode so that <sys/vnode.h> or some other header

that happens to forward declare struct vnode isn't a prerequisite (most
places get it from <sys/imgact.h>).
This commit is contained in:
bde 2002-09-05 07:54:03 +00:00
parent 50afb0aebb
commit 3989bbf091

View File

@ -149,6 +149,7 @@ struct exec {
#ifdef _KERNEL
struct thread;
struct vnode;
int aout_coredump(struct thread *td, struct vnode *vp, off_t limit);
#endif