svn commit: r316215 - stable/11/lib/libc/gen
Ngie Cooper
ngie at FreeBSD.org
Thu Mar 30 05:13:49 UTC 2017
Author: ngie
Date: Thu Mar 30 05:13:47 2017
New Revision: 316215
URL: https://svnweb.freebsd.org/changeset/base/316215
Log:
MFC r315734:
style(9): sort #includes
Modified:
stable/11/lib/libc/gen/getttyent.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/lib/libc/gen/getttyent.c
==============================================================================
--- stable/11/lib/libc/gen/getttyent.c Thu Mar 30 05:11:58 2017 (r316214)
+++ stable/11/lib/libc/gen/getttyent.c Thu Mar 30 05:13:47 2017 (r316215)
@@ -33,14 +33,14 @@ static char sccsid[] = "@(#)getttyent.c
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
-#include <ttyent.h>
+#include <sys/types.h>
+#include <sys/sysctl.h>
+
+#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
-#include <ctype.h>
#include <string.h>
-
-#include <sys/types.h>
-#include <sys/sysctl.h>
+#include <ttyent.h>
static char zapchar;
static FILE *tf;
More information about the svn-src-stable-11
mailing list