aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPawel Jakub Dawidek <pjd@FreeBSD.org>2011-10-25 07:24:51 +0000
committerPawel Jakub Dawidek <pjd@FreeBSD.org>2011-10-25 07:24:51 +0000
commit3ab01ecf5604623dab2c119332173073806c67e9 (patch)
tree12b5e92ce79fd9dcaec6ef51286cf6eeed45fd45
parent9f772ce21998ed2f1718d12de226c364976e6f8f (diff)
downloadsrc-3ab01ecf5604623dab2c119332173073806c67e9.tar.gz
src-3ab01ecf5604623dab2c119332173073806c67e9.zip
Sort includes.
MFC after: 3 days
Notes
Notes: svn path=/head/; revision=226715
-rw-r--r--sbin/geom/class/eli/geom_eli.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/sbin/geom/class/eli/geom_eli.c b/sbin/geom/class/eli/geom_eli.c
index 25409e7d3c08..03c107325af1 100644
--- a/sbin/geom/class/eli/geom_eli.c
+++ b/sbin/geom/class/eli/geom_eli.c
@@ -27,27 +27,27 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
-#include <sys/types.h>
+#include <sys/param.h>
+#include <sys/mman.h>
#include <sys/sysctl.h>
+#include <sys/resource.h>
+#include <opencrypto/cryptodev.h>
+#include <assert.h>
+#include <err.h>
+#include <errno.h>
+#include <fcntl.h>
+#include <libgeom.h>
+#include <paths.h>
+#include <readpassphrase.h>
#include <stdbool.h>
-#include <stdio.h>
#include <stdint.h>
+#include <stdio.h>
#include <stdlib.h>
-#include <unistd.h>
-#include <fcntl.h>
-#include <readpassphrase.h>
#include <string.h>
#include <strings.h>
-#include <libgeom.h>
-#include <paths.h>
-#include <errno.h>
-#include <assert.h>
+#include <unistd.h>
-#include <sys/param.h>
-#include <sys/mman.h>
-#include <sys/resource.h>
-#include <opencrypto/cryptodev.h>
#include <geom/eli/g_eli.h>
#include <geom/eli/pkcs5v2.h>