Date: Wed, 15 Feb 2012 14:26:51 +0000 (UTC) From: Gleb Smirnoff <glebius@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r231760 - head/sys/netgraph Message-ID: <201202151426.q1FEQpn7065868@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: glebius Date: Wed Feb 15 14:26:50 2012 New Revision: 231760 URL: http://svn.freebsd.org/changeset/base/231760 Log: style(9): sort includes. Modified: head/sys/netgraph/ng_base.c Modified: head/sys/netgraph/ng_base.c ============================================================================== --- head/sys/netgraph/ng_base.c Wed Feb 15 14:23:01 2012 (r231759) +++ head/sys/netgraph/ng_base.c Wed Feb 15 14:26:50 2012 (r231760) @@ -43,25 +43,25 @@ */ #include <sys/param.h> -#include <sys/systm.h> #include <sys/ctype.h> #include <sys/errno.h> #include <sys/kdb.h> #include <sys/kernel.h> +#include <sys/kthread.h> #include <sys/ktr.h> #include <sys/limits.h> #include <sys/lock.h> #include <sys/malloc.h> #include <sys/mbuf.h> +#include <sys/proc.h> #include <sys/queue.h> -#include <sys/sysctl.h> -#include <sys/syslog.h> #include <sys/refcount.h> -#include <sys/proc.h> #include <sys/rwlock.h> -#include <sys/unistd.h> -#include <sys/kthread.h> #include <sys/smp.h> +#include <sys/sysctl.h> +#include <sys/syslog.h> +#include <sys/systm.h> +#include <sys/unistd.h> #include <machine/cpu.h> #include <net/netisr.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201202151426.q1FEQpn7065868>