diff options
author | mmcc <mmcc@cvs.openbsd.org> | 2015-10-19 02:15:46 +0000 |
---|---|---|
committer | mmcc <mmcc@cvs.openbsd.org> | 2015-10-19 02:15:46 +0000 |
commit | 7ec211d5dfa60a3ca335aa4ddcb58c4c27ec2d20 (patch) | |
tree | 7a5b349aaeca54bfa9b532a6f4e2a53fb0b4fdbf /bin/ksh/exec.c | |
parent | fa36db9216b0da14a30a846c9e929573b08477c8 (diff) |
Apply style(9) to header includes.
ok nicm@
Diffstat (limited to 'bin/ksh/exec.c')
-rw-r--r-- | bin/ksh/exec.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/bin/ksh/exec.c b/bin/ksh/exec.c index 3f933ac55c2..bc8945eaa7e 100644 --- a/bin/ksh/exec.c +++ b/bin/ksh/exec.c @@ -1,15 +1,17 @@ -/* $OpenBSD: exec.c,v 1.59 2015/10/17 18:43:22 mmcc Exp $ */ +/* $OpenBSD: exec.c,v 1.60 2015/10/19 02:15:45 mmcc Exp $ */ /* * execute command tree */ -#include "sh.h" -#include "c_test.h" -#include <ctype.h> #include <sys/stat.h> + +#include <ctype.h> #include <paths.h> +#include "sh.h" +#include "c_test.h" + /* Does ps4 get parameter substitutions done? */ # define PS4_SUBSTITUTE(s) substitute((s), 0) |