Remove spurious statvfs_t from the declaration of struct statvfs -

the accompanying typedef keyword was missing, and while this type
can be found in SVR4 headers (and processor ABI supplements) it
was not documented there, nor included in XPG4.2.
This commit is contained in:
kleink 2004-04-23 08:44:33 +00:00
parent e52720514e
commit ec413feecc
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: statvfs.h,v 1.1 2004/04/21 01:05:43 christos Exp $ */
/* $NetBSD: statvfs.h,v 1.2 2004/04/23 08:44:33 kleink Exp $ */
/*-
* Copyright (c) 2004 The NetBSD Foundation, Inc.
@ -103,7 +103,7 @@ struct statvfs {
char f_mntonname[_VFS_MNAMELEN]; /* directory on which mounted */
char f_mntfromname[_VFS_MNAMELEN]; /* mounted file system */
} statvfs_t;
};
#if defined(_NETBSD_SOURCE) && !defined(_POSIX_SOURCE) && \
!defined(_XOPEN_SOURCE)