diff options
author | jilles <jilles@FreeBSD.org> | 2010-10-16 12:40:00 +0000 |
---|---|---|
committer | jilles <jilles@FreeBSD.org> | 2010-10-16 12:40:00 +0000 |
commit | f8700ae02e146205add34c4922a79f5507dd4594 (patch) | |
tree | fc8f797240013d87a9e476595e57ba29ea6dc1bb | |
parent | 5b550686a5110cf18c816f96d37d170d8a28e4dc (diff) | |
download | FreeBSD-src-f8700ae02e146205add34c4922a79f5507dd4594.zip FreeBSD-src-f8700ae02e146205add34c4922a79f5507dd4594.tar.gz |
sh: Use <stddef.h> rather than <sys/stddef.h>.
<sys/stddef.h> is only for the kernel and conflicts with <stddef.h>.
-rw-r--r-- | bin/sh/jobs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/sh/jobs.c b/bin/sh/jobs.c index bd01e5df..8722f67 100644 --- a/bin/sh/jobs.c +++ b/bin/sh/jobs.c @@ -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> |