Module Name:    src
Committed By:   riastradh
Date:           Sun Aug 13 15:19:13 UTC 2023

Modified Files:
        src/lib/libc/gen: vis.c

Log Message:
vis(3): Sort includes.  No functional change intended.

Prompted by PR lib/57573.

XXX pullup-10
XXX pullup-9
XXX pullup-8


To generate a diff of this commit:
cvs rdiff -u -r1.83 -r1.84 src/lib/libc/gen/vis.c

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

Modified files:

Index: src/lib/libc/gen/vis.c
diff -u src/lib/libc/gen/vis.c:1.83 src/lib/libc/gen/vis.c:1.84
--- src/lib/libc/gen/vis.c:1.83	Sat Aug 12 12:48:52 2023
+++ src/lib/libc/gen/vis.c	Sun Aug 13 15:19:13 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: vis.c,v 1.83 2023/08/12 12:48:52 riastradh Exp $	*/
+/*	$NetBSD: vis.c,v 1.84 2023/08/13 15:19:13 riastradh Exp $	*/
 
 /*-
  * Copyright (c) 1989, 1993
@@ -57,7 +57,7 @@
 
 #include <sys/cdefs.h>
 #if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: vis.c,v 1.83 2023/08/12 12:48:52 riastradh Exp $");
+__RCSID("$NetBSD: vis.c,v 1.84 2023/08/13 15:19:13 riastradh Exp $");
 #endif /* LIBC_SCCS and not lint */
 #ifdef __FBSDID
 __FBSDID("$FreeBSD$");
@@ -65,13 +65,14 @@ __FBSDID("$FreeBSD$");
 #endif
 
 #include "namespace.h"
+
 #include <sys/types.h>
 #include <sys/param.h>
 
 #include <assert.h>
-#include <vis.h>
 #include <errno.h>
 #include <stdlib.h>
+#include <vis.h>
 #include <wchar.h>
 #include <wctype.h>
 

Reply via email to