Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 30 Mar 2017 05:13:52 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r316216 - stable/10/lib/libc/gen
Message-ID:  <201703300513.v2U5Dq5Y080074@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703300513.v2U5Dq5Y080074>