Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/adosfs/Attic/adosfs.h,v retrieving revision 1.17 retrieving revision 1.17.14.2 diff -u -p -r1.17 -r1.17.14.2 --- src/sys/adosfs/Attic/adosfs.h 1999/07/08 01:05:58 1.17 +++ src/sys/adosfs/Attic/adosfs.h 2002/06/20 03:37:16 1.17.14.2 @@ -1,4 +1,4 @@ -/* $NetBSD: adosfs.h,v 1.17 1999/07/08 01:05:58 wrstuden Exp $ */ +/* $NetBSD: adosfs.h,v 1.17.14.2 2002/06/20 03:37:16 nathanw Exp $ */ /* * Copyright (c) 1994 Christian E. Hopps @@ -43,6 +43,8 @@ struct adosfs_args { }; #ifdef _KERNEL +#include + /* * Amigados datestamp. (from 1/1/1978 00:00:00 local) */ @@ -62,6 +64,7 @@ enum anode_type { AROOT, ADIR, AFILE, AL * table for f/e. it is always ANODETABSZ(ap) bytes in size. */ struct anode { + struct genfs_node gnode; LIST_ENTRY(anode) link; enum anode_type type; char name[31]; /* (r/d/f) name for object */ @@ -166,5 +169,5 @@ void adosfs_aremhash __P((struct anode * int adosfs_lookup __P((void *)); -int (**adosfs_vnodeop_p) __P((void *)); +extern int (**adosfs_vnodeop_p) __P((void *)); #endif /* _KERNEL */