diff options
author | pjd <pjd@FreeBSD.org> | 2011-10-25 07:24:51 +0000 |
---|---|---|
committer | pjd <pjd@FreeBSD.org> | 2011-10-25 07:24:51 +0000 |
commit | ac82c708e32f7268c12562100d4b721a5b0f7a5a (patch) | |
tree | 12b5e92ce79fd9dcaec6ef51286cf6eeed45fd45 /sbin/geom | |
parent | ca669fd67092084f9147f3d37cea2df1654c6555 (diff) | |
download | FreeBSD-src-ac82c708e32f7268c12562100d4b721a5b0f7a5a.zip FreeBSD-src-ac82c708e32f7268c12562100d4b721a5b0f7a5a.tar.gz |
Sort includes.
MFC after: 3 days
Diffstat (limited to 'sbin/geom')
-rw-r--r-- | sbin/geom/class/eli/geom_eli.c | 26 |
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 25409e7..03c1073 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> |