Module Name:    src
Committed By:   riastradh
Date:           Tue Oct 17 10:27:35 UTC 2023

Modified Files:
        src/sys/kern: kern_ktrace.c

Log Message:
kern_ktrace.c: Sort includes.  No functional change intended.


To generate a diff of this commit:
cvs rdiff -u -r1.183 -r1.184 src/sys/kern/kern_ktrace.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/kern/kern_ktrace.c
diff -u src/sys/kern/kern_ktrace.c:1.183 src/sys/kern/kern_ktrace.c:1.184
--- src/sys/kern/kern_ktrace.c:1.183	Sun Oct 15 10:27:11 2023
+++ src/sys/kern/kern_ktrace.c	Tue Oct 17 10:27:34 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: kern_ktrace.c,v 1.183 2023/10/15 10:27:11 riastradh Exp $	*/
+/*	$NetBSD: kern_ktrace.c,v 1.184 2023/10/17 10:27:34 riastradh Exp $	*/
 
 /*-
  * Copyright (c) 2006, 2007, 2008, 2020 The NetBSD Foundation, Inc.
@@ -61,26 +61,26 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_ktrace.c,v 1.183 2023/10/15 10:27:11 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_ktrace.c,v 1.184 2023/10/17 10:27:34 riastradh Exp $");
 
 #include <sys/param.h>
-#include <sys/systm.h>
-#include <sys/proc.h>
+
+#include <sys/callout.h>
+#include <sys/cpu.h>
 #include <sys/file.h>
-#include <sys/kernel.h>
-#include <sys/kthread.h>
-#include <sys/ktrace.h>
-#include <sys/kmem.h>
-#include <sys/syslog.h>
 #include <sys/filedesc.h>
 #include <sys/ioctl.h>
-#include <sys/callout.h>
 #include <sys/kauth.h>
-#include <sys/cpu.h>
-#include <sys/syncobj.h>
-
+#include <sys/kernel.h>
+#include <sys/kmem.h>
+#include <sys/kthread.h>
+#include <sys/ktrace.h>
 #include <sys/mount.h>
+#include <sys/proc.h>
+#include <sys/syncobj.h>
 #include <sys/syscallargs.h>
+#include <sys/syslog.h>
+#include <sys/systm.h>
 
 /*
  * TODO:

Reply via email to