diff options
author | ngie <ngie@FreeBSD.org> | 2017-03-30 05:13:52 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-03-30 05:13:52 +0000 |
commit | a2af4dff87603cbe62700a4e08c7b3dc0fb0227e (patch) | |
tree | 4c3c897fa2d26b8ea80a299abfb9422d7fe0c44c /lib/libc/gen | |
parent | 14a0355c2a602bde263f2b5b6ef2727a75fe7550 (diff) | |
download | FreeBSD-src-a2af4dff87603cbe62700a4e08c7b3dc0fb0227e.zip FreeBSD-src-a2af4dff87603cbe62700a4e08c7b3dc0fb0227e.tar.gz |
MFC r315734:
style(9): sort #includes
Diffstat (limited to 'lib/libc/gen')
-rw-r--r-- | lib/libc/gen/getttyent.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libc/gen/getttyent.c b/lib/libc/gen/getttyent.c index d104305..266f631 100644 --- a/lib/libc/gen/getttyent.c +++ b/lib/libc/gen/getttyent.c @@ -33,14 +33,14 @@ static char sccsid[] = "@(#)getttyent.c 8.1 (Berkeley) 6/4/93"; #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; |