Date: Wed, 30 Sep 2009 19:19:53 +0000 (UTC) From: Lawrence Stewart <lstewart@FreeBSD.org> To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r197651 - projects/tcp_ffcaia2008_8.x/sys/kern Message-ID: <200909301919.n8UJJrvk023748@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: lstewart Date: Wed Sep 30 19:19:53 2009 New Revision: 197651 URL: http://svn.freebsd.org/changeset/base/197651 Log: Unsort the systm.h include back to the top of the list under param.h where it belongs. It only worked in alphabetical order by luck and defines things other header files may use in the future. Sponsored by: FreeBSD Foundation Submitted by: bde@ Modified: projects/tcp_ffcaia2008_8.x/sys/kern/kern_alq.c Modified: projects/tcp_ffcaia2008_8.x/sys/kern/kern_alq.c ============================================================================== --- projects/tcp_ffcaia2008_8.x/sys/kern/kern_alq.c Wed Sep 30 18:50:50 2009 (r197650) +++ projects/tcp_ffcaia2008_8.x/sys/kern/kern_alq.c Wed Sep 30 19:19:53 2009 (r197651) @@ -36,6 +36,7 @@ __FBSDID("$FreeBSD$"); #include "opt_mac.h" #include <sys/param.h> +#include <sys/systm.h> #include <sys/alq.h> #include <sys/eventhandler.h> #include <sys/fcntl.h> @@ -46,7 +47,6 @@ __FBSDID("$FreeBSD$"); #include <sys/mutex.h> #include <sys/namei.h> #include <sys/proc.h> -#include <sys/systm.h> #include <sys/unistd.h> #include <sys/vnode.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200909301919.n8UJJrvk023748>