svn commit: r191303 - head/libexec/rtld-elf

Robert Watson rwatson at FreeBSD.org
Mon Apr 20 10:35:51 UTC 2009


Author: rwatson
Date: Mon Apr 20 10:35:50 2009
New Revision: 191303
URL: http://svn.freebsd.org/changeset/base/191303

Log:
  Prefer <sys/param.h> to <machine/param.h> for the definition of
  CACHE_LINE_SIZE.
  
  Submitted by:	bde
  MFC after:	2 weeks

Modified:
  head/libexec/rtld-elf/rtld_lock.c

Modified: head/libexec/rtld-elf/rtld_lock.c
==============================================================================
--- head/libexec/rtld-elf/rtld_lock.c	Mon Apr 20 09:59:08 2009	(r191302)
+++ head/libexec/rtld-elf/rtld_lock.c	Mon Apr 20 10:35:50 2009	(r191303)
@@ -42,7 +42,7 @@
  * using assembly language sequences in "rtld_start.S".
  */
 
-#include <machine/param.h>
+#include <sys/param.h>
 
 #include <signal.h>
 #include <stdlib.h>


More information about the svn-src-head mailing list