svn commit: r316216 - stable/10/lib/libc/gen

Ngie Cooper ngie at FreeBSD.org
Thu Mar 30 05:13:53 UTC 2017


Author: ngie
Date: Thu Mar 30 05:13:52 2017
New Revision: 316216
URL: https://svnweb.freebsd.org/changeset/base/316216

Log:
  MFC r315734:
  
  style(9): sort #includes

Modified:
  stable/10/lib/libc/gen/getttyent.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/lib/libc/gen/getttyent.c
==============================================================================
--- stable/10/lib/libc/gen/getttyent.c	Thu Mar 30 05:13:47 2017	(r316215)
+++ stable/10/lib/libc/gen/getttyent.c	Thu Mar 30 05:13:52 2017	(r316216)
@@ -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-10 mailing list