From: Sevan Janiyan Date: Sun, 4 Nov 2018 14:59:34 +0000 (+0000) Subject: sbin/newfs_v7fs: sync with NetBSD-8 X-Git-Url: http://zhaoyanbai.com/repos/?a=commitdiff_plain;h=8e97a2d0236f18f935ecb998b255814def9a3e78;p=minix.git sbin/newfs_v7fs: sync with NetBSD-8 need Document history. closes #275 Change-Id: I988a269b1fffc58238008b4aa4bd8d2a56e123c4 --- diff --git a/sbin/newfs_v7fs/newfs_v7fs.8 b/sbin/newfs_v7fs/newfs_v7fs.8 index 7dd3669d2..596a91086 100644 --- a/sbin/newfs_v7fs/newfs_v7fs.8 +++ b/sbin/newfs_v7fs/newfs_v7fs.8 @@ -1,4 +1,4 @@ -.\" $NetBSD: newfs_v7fs.8,v 1.3 2011/08/10 11:31:49 uch Exp $ +.\" $NetBSD: newfs_v7fs.8,v 1.4 2016/09/12 05:16:04 sevan Exp $ .\" .\" Copyright (c) 2011 The NetBSD Foundation, Inc. .\" All rights reserved. @@ -56,7 +56,7 @@ .\" .\" @(#)newlfs.8 8.1 (Berkeley) 6/19/93 .\" -.Dd April 29, 2011 +.Dd September 12, 2016 .Dt NEWFS_V7FS 8 .Os .Sh NAME @@ -128,3 +128,12 @@ Fill file with zeroes instead of creating a sparse file. .\" .Xr fs 5 , .Xr disklabel 8 , .Xr diskpart 8 +.Sh HISTORY +A +.Nm +utility appeared in +.Nx 6.0 . +.Sh AUTHORS +.Nm +was written by +.An UCHIYAMA Yasushi Aq Mt uch@NetBSD.org . diff --git a/sbin/newfs_v7fs/newfs_v7fs.c b/sbin/newfs_v7fs/newfs_v7fs.c index b7591b234..a1ba2b5fc 100644 --- a/sbin/newfs_v7fs/newfs_v7fs.c +++ b/sbin/newfs_v7fs/newfs_v7fs.c @@ -1,4 +1,4 @@ -/* $NetBSD: newfs_v7fs.c,v 1.4 2015/06/16 23:18:55 christos Exp $ */ +/* $NetBSD: newfs_v7fs.c,v 1.5 2017/01/10 20:53:09 christos Exp $ */ /*- * Copyright (c) 2004, 2011 The NetBSD Foundation, Inc. @@ -31,19 +31,21 @@ #include #ifndef lint -__RCSID("$NetBSD: newfs_v7fs.c,v 1.4 2015/06/16 23:18:55 christos Exp $"); +__RCSID("$NetBSD: newfs_v7fs.c,v 1.5 2017/01/10 20:53:09 christos Exp $"); #endif /* not lint */ #include #include +#include +#include +#include + #include #include #include #include #include #include -#include -#include #include #include "v7fs_impl.h"