Date: Sun, 14 Nov 2010 19:40:23 +0000 (UTC) From: Jilles Tjoelker <jilles@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r215313 - stable/8/bin/sh Message-ID: <201011141940.oAEJeNog091712@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201011141940.oAEJeNog091712>