svn commit: r197651 - projects/tcp_ffcaia2008_8.x/sys/kern

Lawrence Stewart lstewart at FreeBSD.org
Wed Sep 30 19:19:53 UTC 2009


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>
 


More information about the svn-src-projects mailing list