Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 30 Mar 2017 05:13:47 +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-11@freebsd.org
Subject:   svn commit: r316215 - stable/11/lib/libc/gen
Message-ID:  <201703300513.v2U5DlSZ080026@repo.freebsd.org>

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



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