Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 16 Oct 2010 12:40:00 +0000 (UTC)
From:      Jilles Tjoelker <jilles@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r213925 - head/bin/sh
Message-ID:  <201010161240.o9GCe0Vk076929@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201010161240.o9GCe0Vk076929>