svn commit: r315734 - head/lib/libc/gen
Ngie Cooper
ngie at FreeBSD.org
Wed Mar 22 19:17:14 UTC 2017
Author: ngie
Date: Wed Mar 22 19:17:13 2017
New Revision: 315734
URL: https://svnweb.freebsd.org/changeset/base/315734
Log:
style(9): sort #includes
MFC after: 1 week
Sponsored by: Dell EMC Isilon
Modified:
head/lib/libc/gen/getttyent.c
Modified: head/lib/libc/gen/getttyent.c
==============================================================================
--- head/lib/libc/gen/getttyent.c Wed Mar 22 19:00:41 2017 (r315733)
+++ head/lib/libc/gen/getttyent.c Wed Mar 22 19:17:13 2017 (r315734)
@@ -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-head
mailing list