Module Name: src Committed By: riastradh Date: Sun Aug 13 15:20:37 UTC 2023
Modified Files: src/lib/libc/gen: vis.c Log Message: vis(3): Per KNF, sys/param.h comes before sys/types.h. Which is nice because that's also lexicographic. To generate a diff of this commit: cvs rdiff -u -r1.85 -r1.86 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.85 src/lib/libc/gen/vis.c:1.86 --- src/lib/libc/gen/vis.c:1.85 Sun Aug 13 15:19:24 2023 +++ src/lib/libc/gen/vis.c Sun Aug 13 15:20:37 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: vis.c,v 1.85 2023/08/13 15:19:24 riastradh Exp $ */ +/* $NetBSD: vis.c,v 1.86 2023/08/13 15:20:37 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.85 2023/08/13 15:19:24 riastradh Exp $"); +__RCSID("$NetBSD: vis.c,v 1.86 2023/08/13 15:20:37 riastradh Exp $"); #endif /* LIBC_SCCS and not lint */ #ifdef __FBSDID __FBSDID("$FreeBSD$"); @@ -66,8 +66,8 @@ __FBSDID("$FreeBSD$"); #include "namespace.h" -#include <sys/types.h> #include <sys/param.h> +#include <sys/types.h> #include <assert.h> #include <errno.h>