]> Zhao Yanbai Git Server - minix.git/commitdiff
sbin/newfs_v7fs: sync with NetBSD-8 42/3542/1
authorSevan Janiyan <venture37@geeklan.co.uk>
Sun, 4 Nov 2018 14:59:34 +0000 (14:59 +0000)
committerLionel Sambuc <lionel.sambuc@gmail.com>
Tue, 13 Nov 2018 07:38:56 +0000 (08:38 +0100)
need <sys/stat.h>
Document history.

closes #275

Change-Id: I988a269b1fffc58238008b4aa4bd8d2a56e123c4

sbin/newfs_v7fs/newfs_v7fs.8
sbin/newfs_v7fs/newfs_v7fs.c

index 7dd3669d203ac57dd3969d2fdabe6cd752f57b18..596a91086e65983edeb962df2507e6f392f1b732 100644 (file)
@@ -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 .
index b7591b234260fdd3cc580e201ae4c556cbcddef8..a1ba2b5fc8dbd630fcdcbc22fcb799ba7bd65607 100644 (file)
@@ -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.
 
 #include <sys/cdefs.h>
 #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 <sys/types.h>
 #include <sys/param.h>
+#include <sys/disklabel.h>
+#include <sys/ioctl.h>
+#include <sys/stat.h>
+
 #include <err.h>
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>
 #include <unistd.h>
 #include <fcntl.h>
-#include <sys/ioctl.h>
-#include <sys/disklabel.h>
 
 #include <fs/v7fs/v7fs.h>
 #include "v7fs_impl.h"