summaryrefslogtreecommitdiff
path: root/bin/ksh/exec.c
diff options
context:
space:
mode:
authormmcc <mmcc@cvs.openbsd.org>2015-10-19 02:15:46 +0000
committermmcc <mmcc@cvs.openbsd.org>2015-10-19 02:15:46 +0000
commit7ec211d5dfa60a3ca335aa4ddcb58c4c27ec2d20 (patch)
tree7a5b349aaeca54bfa9b532a6f4e2a53fb0b4fdbf /bin/ksh/exec.c
parentfa36db9216b0da14a30a846c9e929573b08477c8 (diff)
Apply style(9) to header includes.
ok nicm@
Diffstat (limited to 'bin/ksh/exec.c')
-rw-r--r--bin/ksh/exec.c10
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)