diff options
author | 2016-01-29 16:13:17 +0000 | |
---|---|---|
committer | 2016-01-29 16:13:17 +0000 | |
commit | 4d430c44e1d36b399d229a03b65740d50dca504b (patch) | |
tree | f7ab70ff2314ae5b7a058f32ae549d1da4984b7b | |
parent | remove unneeded CHAR_BIT macro (diff) | |
download | wireguard-openbsd-4d430c44e1d36b399d229a03b65740d50dca504b.tar.xz wireguard-openbsd-4d430c44e1d36b399d229a03b65740d50dca504b.zip |
sort includes
from Michael Reed
-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 |