From ec413feecc8a4f4c59c7b05b1644b7c855eb7a45 Mon Sep 17 00:00:00 2001 From: kleink Date: Fri, 23 Apr 2004 08:44:33 +0000 Subject: [PATCH] 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. --- sys/sys/statvfs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/sys/statvfs.h b/sys/sys/statvfs.h index 19333a7c786a..5da4baeb8453 100644 --- a/sys/sys/statvfs.h +++ b/sys/sys/statvfs.h @@ -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)