svn commit: r185044 - head/sbin/geom/class/part

Marcel Moolenaar marcel at FreeBSD.org
Mon Nov 17 19:43:02 PST 2008


Author: marcel
Date: Tue Nov 18 03:43:02 2008
New Revision: 185044
URL: http://svn.freebsd.org/changeset/base/185044

Log:
  Sort includes
  
  Submitted by:	delphij

Modified:
  head/sbin/geom/class/part/geom_part.c

Modified: head/sbin/geom/class/part/geom_part.c
==============================================================================
--- head/sbin/geom/class/part/geom_part.c	Tue Nov 18 01:19:25 2008	(r185043)
+++ head/sbin/geom/class/part/geom_part.c	Tue Nov 18 03:43:02 2008	(r185044)
@@ -27,19 +27,20 @@
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");
 
-#include <stdio.h>
-#include <stdint.h>
-#include <stdlib.h>
-#include <unistd.h>
+#include <sys/stat.h>
+
+#include <assert.h>
 #include <err.h>
+#include <errno.h>
 #include <fcntl.h>
-#include <string.h>
-#include <strings.h>
 #include <libgeom.h>
 #include <paths.h>
-#include <errno.h>
-#include <assert.h>
-#include <sys/stat.h>
+#include <stdint.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <strings.h>
+#include <unistd.h>
 
 #include "core/geom.h"
 #include "misc/subr.h"


More information about the svn-src-all mailing list