Date: Tue, 18 Nov 2008 03:43:02 +0000 (UTC) From: Marcel Moolenaar <marcel@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r185044 - head/sbin/geom/class/part Message-ID: <200811180343.mAI3h2jO066463@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200811180343.mAI3h2jO066463>