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/expr.c | |
parent | fa36db9216b0da14a30a846c9e929573b08477c8 (diff) |
Apply style(9) to header includes.
ok nicm@
Diffstat (limited to 'bin/ksh/expr.c')
-rw-r--r-- | bin/ksh/expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ksh/expr.c b/bin/ksh/expr.c index effc20d42ce..52e9965fb70 100644 --- a/bin/ksh/expr.c +++ b/bin/ksh/expr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: expr.c,v 1.28 2015/09/22 21:50:40 millert Exp $ */ +/* $OpenBSD: expr.c,v 1.29 2015/10/19 02:15:45 mmcc Exp $ */ /* * Korn expression evaluation @@ -7,9 +7,9 @@ * todo: better error handling: if in builtin, should be builtin error, etc. */ -#include "sh.h" #include <ctype.h> +#include "sh.h" /* The order of these enums is constrained by the order of opinfo[] */ enum token { |