diff options
author | mmcc <mmcc@cvs.openbsd.org> | 2016-01-29 16:13:18 +0000 |
---|---|---|
committer | mmcc <mmcc@cvs.openbsd.org> | 2016-01-29 16:13:18 +0000 |
commit | 700388145497b08b9161770c68dad1883c5a5377 (patch) | |
tree | ecd2ab4b5386fad7fb357a5fa71a75828a83dec0 /usr.bin/less | |
parent | be3f6d5b57cc04be68f5dd1cdcb66c0573c82a6d (diff) |
sort includes
from Michael Reed
Diffstat (limited to 'usr.bin/less')
-rw-r--r-- | usr.bin/less/less.h | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/usr.bin/less/less.h b/usr.bin/less/less.h index 0ac7e26e499..a67401e9bf9 100644 --- a/usr.bin/less/less.h +++ b/usr.bin/less/less.h @@ -15,19 +15,18 @@ #include "defines.h" -/* Library function declarations */ - #include <sys/types.h> -#include <stdio.h> -#include <fcntl.h> -#include <unistd.h> + #include <ctype.h> -#include <wctype.h> +#include <fcntl.h> +#include <libgen.h> #include <limits.h> +#include <signal.h> +#include <stdio.h> #include <stdlib.h> #include <string.h> -#include <libgen.h> -#include <signal.h> +#include <unistd.h> +#include <wctype.h> /* * Simple lowercase test which can be used during option processing |