diff options
author | markm <markm@FreeBSD.org> | 2001-12-02 00:06:22 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2001-12-02 00:06:22 +0000 |
commit | 4aa5e7d2a3f7936676d1e66ae76d51c49ecec8da (patch) | |
tree | 682a1c1f870b9d376cf1a0543d56ab89ad9173f5 /usr.bin/login | |
parent | 8a79fc4a5afbf363bb878c0ee3a096669541d06a (diff) | |
download | FreeBSD-src-4aa5e7d2a3f7936676d1e66ae76d51c49ecec8da.zip FreeBSD-src-4aa5e7d2a3f7936676d1e66ae76d51c49ecec8da.tar.gz |
Sort includes.
Diffstat (limited to 'usr.bin/login')
-rw-r--r-- | usr.bin/login/login.c | 8 | ||||
-rw-r--r-- | usr.bin/login/login_fbtab.c | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/usr.bin/login/login.c b/usr.bin/login/login.c index f636698..99d64bd 100644 --- a/usr.bin/login/login.c +++ b/usr.bin/login/login.c @@ -51,14 +51,14 @@ static const char rcsid[] = * login -f name (for pre-authenticated login: datakit, xterm, etc.) */ -#include <sys/copyright.h> #include <sys/param.h> -#include <sys/wait.h> -#include <sys/stat.h> +#include <sys/copyright.h> +#include <sys/file.h> #include <sys/socket.h> +#include <sys/stat.h> #include <sys/time.h> #include <sys/resource.h> -#include <sys/file.h> +#include <sys/wait.h> #include <netinet/in.h> #include <arpa/inet.h> diff --git a/usr.bin/login/login_fbtab.c b/usr.bin/login/login_fbtab.c index a43b612..6943d02f 100644 --- a/usr.bin/login/login_fbtab.c +++ b/usr.bin/login/login_fbtab.c @@ -61,12 +61,12 @@ #include <sys/types.h> #include <sys/stat.h> -#include <stdio.h> -#include <syslog.h> -#include <string.h> #include <errno.h> #include <glob.h> #include <paths.h> +#include <stdio.h> +#include <string.h> +#include <syslog.h> #include <unistd.h> #include "login.h" |