svn commit: r226715 - head/sbin/geom/class/eli

Pawel Jakub Dawidek pjd at FreeBSD.org
Tue Oct 25 07:24:52 UTC 2011


Author: pjd
Date: Tue Oct 25 07:24:51 2011
New Revision: 226715
URL: http://svn.freebsd.org/changeset/base/226715

Log:
  Sort includes.
  
  MFC after:	3 days

Modified:
  head/sbin/geom/class/eli/geom_eli.c

Modified: head/sbin/geom/class/eli/geom_eli.c
==============================================================================
--- head/sbin/geom/class/eli/geom_eli.c	Tue Oct 25 04:15:45 2011	(r226714)
+++ head/sbin/geom/class/eli/geom_eli.c	Tue Oct 25 07:24:51 2011	(r226715)
@@ -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>
 


More information about the svn-src-head mailing list