Module Name:    src
Committed By:   riastradh
Date:           Sun Nov 11 01:26:00 UTC 2018

Modified Files:
        src/tests/kernel: h_segv.c

Log Message:
Sort #includes.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/tests/kernel/h_segv.c

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

Modified files:

Index: src/tests/kernel/h_segv.c
diff -u src/tests/kernel/h_segv.c:1.7 src/tests/kernel/h_segv.c:1.8
--- src/tests/kernel/h_segv.c:1.7	Wed May 30 17:48:13 2018
+++ src/tests/kernel/h_segv.c	Sun Nov 11 01:26:00 2018
@@ -1,4 +1,4 @@
-/*	$NetBSD: h_segv.c,v 1.7 2018/05/30 17:48:13 kamil Exp $	*/
+/*	$NetBSD: h_segv.c,v 1.8 2018/11/11 01:26:00 riastradh Exp $	*/
 
 /*-
  * Copyright (c) 2017 The NetBSD Foundation, Inc.
@@ -29,17 +29,18 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: h_segv.c,v 1.7 2018/05/30 17:48:13 kamil Exp $");
+__RCSID("$NetBSD: h_segv.c,v 1.8 2018/11/11 01:26:00 riastradh Exp $");
 
 #include <sys/types.h>
 #include <sys/mman.h>
 #include <sys/ptrace.h>
+
+#include <err.h>
+#include <signal.h>
 #include <stdio.h>
-#include <string.h>
 #include <stdlib.h>
+#include <string.h>
 #include <unistd.h>
-#include <signal.h>
-#include <err.h>
 
 static int flags;
 #define F_RECURSE 	1

Reply via email to