Add a define for VFS_MAXFIDSIZE

This commit is contained in:
christos 2004-04-21 02:21:49 +00:00
parent 6c1c771fcd
commit 4a16c676d7
1 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: fstypes.h,v 1.1 2004/04/21 01:05:43 christos Exp $ */
/* $NetBSD: fstypes.h,v 1.2 2004/04/21 02:21:49 christos Exp $ */
/*
* Copyright (c) 1989, 1991, 1993
@ -48,6 +48,10 @@ struct fid {
char fid_data[_VFS_MAXFIDSZ];/* data (variable length) */
};
#if defined(_NETBSD_SOURCE)
#define VFS_MAXFIDSZ _VFS_MAXFIDSZ
#endif
/*
* Generic file handle
*/