diff options
author | ngie <ngie@FreeBSD.org> | 2017-07-06 05:59:27 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-07-06 05:59:27 +0000 |
commit | 8c2914243ec3fffe78a3e8406fac6984186f7978 (patch) | |
tree | 4f4ae76b505e564cd47111a09e379c2a3ee6b1af /usr.bin | |
parent | 7ac9e94f5f7e764bc9f84a8d03f30a7bf1f65447 (diff) | |
download | FreeBSD-src-8c2914243ec3fffe78a3e8406fac6984186f7978.zip FreeBSD-src-8c2914243ec3fffe78a3e8406fac6984186f7978.tar.gz |
MFC r317161:
which(1): sort #includes
No functional change [intended].
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/which/which.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/which/which.c b/usr.bin/which/which.c index 10161fe..0f4c1b4 100644 --- a/usr.bin/which/which.c +++ b/usr.bin/which/which.c @@ -28,9 +28,8 @@ __FBSDID("$FreeBSD$"); -#include <sys/stat.h> #include <sys/param.h> - +#include <sys/stat.h> #include <err.h> #include <stdio.h> #include <stdlib.h> |