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>
 
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to