Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sbin/newfs_sysvbfs fix includes, addr __RCSID
details: https://anonhg.NetBSD.org/src/rev/87827440a2f5
branches: trunk
changeset: 350368:87827440a2f5
user: christos <christos%NetBSD.org@localhost>
date: Tue Jan 10 20:49:20 2017 +0000
description:
fix includes, addr __RCSID
diffstat:
sbin/newfs_sysvbfs/newfs_sysvbfs.c | 20 ++++++++++++--------
1 files changed, 12 insertions(+), 8 deletions(-)
diffs (41 lines):
diff -r 5a244f19de3a -r 87827440a2f5 sbin/newfs_sysvbfs/newfs_sysvbfs.c
--- a/sbin/newfs_sysvbfs/newfs_sysvbfs.c Tue Jan 10 20:48:34 2017 +0000
+++ b/sbin/newfs_sysvbfs/newfs_sysvbfs.c Tue Jan 10 20:49:20 2017 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: newfs_sysvbfs.c,v 1.9 2014/03/23 05:10:56 dholland Exp $ */
+/* $NetBSD: newfs_sysvbfs.c,v 1.10 2017/01/10 20:49:20 christos Exp $ */
/*-
* Copyright (c) 2004 The NetBSD Foundation, Inc.
@@ -28,20 +28,24 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__RCSID("$NetBSD: newfs_sysvbfs.c,v 1.10 2017/01/10 20:49:20 christos Exp $");
+#include <sys/param.h>
#include <sys/types.h>
-#include <sys/param.h>
+#include <sys/disklabel.h>
+#include <sys/errno.h>
+#include <sys/ioctl.h>
+#include <sys/stat.h>
+
+#include <assert.h>
#include <err.h>
+#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <time.h>
#include <unistd.h>
-#include <fcntl.h>
-#include <time.h>
-#include <assert.h>
-#include <sys/errno.h>
-#include <sys/ioctl.h>
-#include <sys/disklabel.h>
#include <fs/sysvbfs/bfs.h>
Home |
Main Index |
Thread Index |
Old Index