aboutsummaryrefslogtreecommitdiff
path: root/sbin/geom
diff options
context:
space:
mode:
authorMarcel Moolenaar <marcel@FreeBSD.org>2008-11-18 03:43:02 +0000
committerMarcel Moolenaar <marcel@FreeBSD.org>2008-11-18 03:43:02 +0000
commit567bc443e808e04b0f9ab31b721001c26e66f041 (patch)
treea3a87bda7e959a17f20ab925937e51c4d675af44 /sbin/geom
parentc082b52c720814bcffecc3901ef80b0c3b4cfe3c (diff)
downloadsrc-567bc443e808e04b0f9ab31b721001c26e66f041.tar.gz
src-567bc443e808e04b0f9ab31b721001c26e66f041.zip
Sort includes
Submitted by: delphij
Notes
Notes: svn path=/head/; revision=185044
Diffstat (limited to 'sbin/geom')
-rw-r--r--sbin/geom/class/part/geom_part.c19
1 files changed, 10 insertions, 9 deletions
diff --git a/sbin/geom/class/part/geom_part.c b/sbin/geom/class/part/geom_part.c
index 316f7e596206..4264992df9eb 100644
--- a/sbin/geom/class/part/geom_part.c
+++ b/sbin/geom/class/part/geom_part.c
@@ -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"