diff options
author | ngie <ngie@FreeBSD.org> | 2017-07-06 05:59:22 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-07-06 05:59:22 +0000 |
commit | 5294da362c7bac6741e62d106bdc9e95fd212664 (patch) | |
tree | 03edbc7528602ac65f3333f11677e958927694b2 | |
parent | 354827093898cf60a42f39b14507355689844b9c (diff) | |
download | FreeBSD-src-5294da362c7bac6741e62d106bdc9e95fd212664.zip FreeBSD-src-5294da362c7bac6741e62d106bdc9e95fd212664.tar.gz |
MFC r317161:
which(1): sort #includes
No functional change [intended].
-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> |