svn commit: r309006 - head/lib/libc/gen

Ed Maste emaste at FreeBSD.org
Tue Nov 22 16:00:19 UTC 2016


Author: emaste
Date: Tue Nov 22 16:00:18 2016
New Revision: 309006
URL: https://svnweb.freebsd.org/changeset/base/309006

Log:
  remove unnecessary vm includes from setproctitle
  
  vm headers were needed only for the PS_STRINGS fallback, which was
  removed in r297888.
  
  MFC after:	1 week
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/lib/libc/gen/setproctitle.c

Modified: head/lib/libc/gen/setproctitle.c
==============================================================================
--- head/lib/libc/gen/setproctitle.c	Tue Nov 22 15:28:20 2016	(r309005)
+++ head/lib/libc/gen/setproctitle.c	Tue Nov 22 16:00:18 2016	(r309006)
@@ -23,10 +23,6 @@ __FBSDID("$FreeBSD$");
 #include <sys/exec.h>
 #include <sys/sysctl.h>
 
-#include <vm/vm.h>
-#include <vm/vm_param.h>
-#include <vm/pmap.h>
-
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>


More information about the svn-src-all mailing list