svn commit: r213925 - head/bin/sh

Jilles Tjoelker jilles at FreeBSD.org
Sat Oct 16 12:40:00 UTC 2010


Author: jilles
Date: Sat Oct 16 12:40:00 2010
New Revision: 213925
URL: http://svn.freebsd.org/changeset/base/213925

Log:
  sh: Use <stddef.h> rather than <sys/stddef.h>.
  
  <sys/stddef.h> is only for the kernel and conflicts with <stddef.h>.

Modified:
  head/bin/sh/jobs.c

Modified: head/bin/sh/jobs.c
==============================================================================
--- head/bin/sh/jobs.c	Sat Oct 16 11:52:43 2010	(r213924)
+++ head/bin/sh/jobs.c	Sat Oct 16 12:40:00 2010	(r213925)
@@ -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-head mailing list