diff options
author | eivind <eivind@FreeBSD.org> | 1997-12-10 22:18:54 +0000 |
---|---|---|
committer | eivind <eivind@FreeBSD.org> | 1997-12-10 22:18:54 +0000 |
commit | 2208ac1acff642528ab86ad928de033b2ebec1ab (patch) | |
tree | e10c194abd1c5b693eae26b6ecf96e904dcfc92d /bin/sh | |
parent | db8034d25a40e9c0c216d0d4a0f6a3679b6d6e42 (diff) | |
download | FreeBSD-src-2208ac1acff642528ab86ad928de033b2ebec1ab.zip FreeBSD-src-2208ac1acff642528ab86ad928de033b2ebec1ab.tar.gz |
Remove simultaneous include of <sys/param.h> and <sys/types.h>.
Reorder includes to be alphabetical some places since I already was in
here.
Diffstat (limited to 'bin/sh')
-rw-r--r-- | bin/sh/jobs.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/sh/jobs.c b/bin/sh/jobs.c index 563892f..a17b5d0 100644 --- a/bin/sh/jobs.c +++ b/bin/sh/jobs.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: jobs.c,v 1.15 1997/05/24 21:04:55 steve Exp $ + * $Id: jobs.c,v 1.16 1997/08/18 02:53:19 steve Exp $ */ #ifndef lint @@ -45,7 +45,6 @@ static char const sccsid[] = "@(#)jobs.c 8.5 (Berkeley) 5/4/95"; #include <errno.h> #include <unistd.h> #include <stdlib.h> -#include <sys/types.h> #include <sys/param.h> #ifdef BSD #include <sys/wait.h> |