Date: Wed, 22 Mar 2017 19:17:13 +0000 (UTC) From: Ngie Cooper <ngie@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r315734 - head/lib/libc/gen Message-ID: <201703221917.v2MJHDb0067328@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703221917.v2MJHDb0067328>