svn commit: r215313 - stable/8/bin/sh

Jilles Tjoelker jilles at FreeBSD.org
Sun Nov 14 19:40:23 UTC 2010


Author: jilles
Date: Sun Nov 14 19:40:22 2010
New Revision: 215313
URL: http://svn.freebsd.org/changeset/base/215313

Log:
  MFC r213925: sh: Use <stddef.h> rather than <sys/stddef.h>.
  
  <sys/stddef.h> is only for the kernel and conflicts with <stddef.h>.
  
  Note: there is no mergeinfo as r213925 was previously "blocked" by obrien.

Modified:
  stable/8/bin/sh/jobs.c

Modified: stable/8/bin/sh/jobs.c
==============================================================================
--- stable/8/bin/sh/jobs.c	Sun Nov 14 19:37:07 2010	(r215312)
+++ stable/8/bin/sh/jobs.c	Sun Nov 14 19:40:22 2010	(r215313)
@@ -41,13 +41,13 @@ __FBSDID("$FreeBSD$");
 #include <sys/ioctl.h>
 #include <sys/param.h>
 #include <sys/resource.h>
-#include <sys/stddef.h>
 #include <sys/time.h>
 #include <sys/wait.h>
 #include <errno.h>
 #include <fcntl.h>
 #include <paths.h>
 #include <signal.h>
+#include <stddef.h>
 #include <stdlib.h>
 #include <unistd.h>
 


More information about the svn-src-stable-8 mailing list