Module Name:    src
Committed By:   htodd
Date:           Mon Apr 20 05:22:28 UTC 2020

Modified Files:
        src/sys/miscfs/procfs: procfs_vfsops.c

Log Message:
Sort include files.


To generate a diff of this commit:
cvs rdiff -u -r1.106 -r1.107 src/sys/miscfs/procfs/procfs_vfsops.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/miscfs/procfs/procfs_vfsops.c
diff -u src/sys/miscfs/procfs/procfs_vfsops.c:1.106 src/sys/miscfs/procfs/procfs_vfsops.c:1.107
--- src/sys/miscfs/procfs/procfs_vfsops.c:1.106	Mon Apr 20 05:11:00 2020
+++ src/sys/miscfs/procfs/procfs_vfsops.c	Mon Apr 20 05:22:28 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: procfs_vfsops.c,v 1.106 2020/04/20 05:11:00 htodd Exp $	*/
+/*	$NetBSD: procfs_vfsops.c,v 1.107 2020/04/20 05:22:28 htodd Exp $	*/
 
 /*
  * Copyright (c) 1993
@@ -76,29 +76,29 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: procfs_vfsops.c,v 1.106 2020/04/20 05:11:00 htodd Exp $");
+__KERNEL_RCSID(0, "$NetBSD: procfs_vfsops.c,v 1.107 2020/04/20 05:22:28 htodd Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_compat_netbsd.h"
 #endif
 
 #include <sys/param.h>
-#include <sys/time.h>
-#include <sys/kernel.h>
-#include <sys/systm.h>
-#include <sys/sysctl.h>
-#include <sys/proc.h>
+#include <sys/atomic.h>
 #include <sys/buf.h>
-#include <sys/syslog.h>
-#include <sys/mount.h>
 #include <sys/dirent.h>
-#include <sys/signalvar.h>
-#include <sys/vnode.h>
 #include <sys/file.h>
 #include <sys/filedesc.h>
 #include <sys/kauth.h>
+#include <sys/kernel.h>
 #include <sys/module.h>
-#include <sys/atomic.h>
+#include <sys/mount.h>
+#include <sys/proc.h>
+#include <sys/signalvar.h>
+#include <sys/sysctl.h>
+#include <sys/syslog.h>
+#include <sys/systm.h>
+#include <sys/time.h>
+#include <sys/vnode.h>
 
 #include <miscfs/genfs/genfs.h>
 

Reply via email to