Apply style(9) to header includes.
authormmcc <mmcc@openbsd.org>
Mon, 19 Oct 2015 02:15:45 +0000 (02:15 +0000)
committermmcc <mmcc@openbsd.org>
Mon, 19 Oct 2015 02:15:45 +0000 (02:15 +0000)
ok nicm@

22 files changed:
bin/ksh/alloc.c
bin/ksh/c_ksh.c
bin/ksh/c_sh.c
bin/ksh/c_test.c
bin/ksh/c_ulimit.c
bin/ksh/edit.c
bin/ksh/emacs.c
bin/ksh/eval.c
bin/ksh/exec.c
bin/ksh/expr.c
bin/ksh/history.c
bin/ksh/io.c
bin/ksh/jobs.c
bin/ksh/lex.c
bin/ksh/mail.c
bin/ksh/main.c
bin/ksh/misc.c
bin/ksh/mknod.c
bin/ksh/path.c
bin/ksh/shf.c
bin/ksh/var.c
bin/ksh/vi.c

index e6eee0e..e1523d2 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: alloc.c,v 1.12 2015/10/17 13:32:46 mmcc Exp $ */
+/*     $OpenBSD: alloc.c,v 1.13 2015/10/19 02:15:45 mmcc Exp $ */
 /*
  * Copyright (c) 2002 Marc Espie.
  *
@@ -29,6 +29,7 @@
  */
 
 #include <stdint.h>
+
 #include "sh.h"
 
 struct link {
index efc7ead..ff61292 100644 (file)
@@ -1,13 +1,14 @@
-/*     $OpenBSD: c_ksh.c,v 1.43 2015/10/09 19:36:27 tedu Exp $ */
+/*     $OpenBSD: c_ksh.c,v 1.44 2015/10/19 02:15:45 mmcc Exp $ */
 
 /*
  * built-in Korn commands: c_*
  */
 
-#include "sh.h"
 #include <sys/stat.h>
+
 #include <ctype.h>
 
+#include "sh.h"
 
 int
 c_cd(char **wp)
index 25ce116..de3b6b3 100644 (file)
@@ -1,13 +1,14 @@
-/*     $OpenBSD: c_sh.c,v 1.50 2015/10/10 00:10:07 deraadt Exp $       */
+/*     $OpenBSD: c_sh.c,v 1.51 2015/10/19 02:15:45 mmcc Exp $  */
 
 /*
  * built-in Bourne commands
  */
 
-#include "sh.h"
+#include <sys/resource.h>
 #include <sys/stat.h>
 #include <sys/time.h>
-#include <sys/resource.h>
+
+#include "sh.h"
 
 static void p_time(struct shf *, int, struct timeval *, int, char *, char *);
 
index de9cdff..e252638 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: c_test.c,v 1.20 2015/09/18 07:28:24 nicm Exp $        */
+/*     $OpenBSD: c_test.c,v 1.21 2015/10/19 02:15:45 mmcc Exp $        */
 
 /*
  * test(1); version 7-like  --  author Erik Baalbergen
@@ -9,8 +9,9 @@
  * modified by J.T. Conklin to add POSIX compatibility.
  */
 
-#include "sh.h"
 #include <sys/stat.h>
+
+#include "sh.h"
 #include "c_test.h"
 
 /* test(1) accepts the following grammar:
index 7335efb..0e8278d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: c_ulimit.c,v 1.20 2015/09/15 18:15:05 tedu Exp $      */
+/*     $OpenBSD: c_ulimit.c,v 1.21 2015/10/19 02:15:45 mmcc Exp $      */
 
 /*
        ulimit -- handle "ulimit" builtin
        that was originally under case SYSULIMIT in source file "xec.c".
 */
 
-#include "sh.h"
 #include <sys/resource.h>
 
+#include "sh.h"
+
 #define SOFT   0x1
 #define HARD   0x2
 
index 89f229a..54952e9 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: edit.c,v 1.46 2015/10/09 19:36:27 tedu Exp $  */
+/*     $OpenBSD: edit.c,v 1.47 2015/10/19 02:15:45 mmcc Exp $  */
 
 /*
  * Command line editing - common code
@@ -8,13 +8,15 @@
 #include "config.h"
 #ifdef EDIT
 
-#include "sh.h"
-#include "tty.h"
-#include "edit.h"
 #include <sys/ioctl.h>
+#include <sys/stat.h>
+
 #include <ctype.h>
 #include <libgen.h>
-#include <sys/stat.h>
+
+#include "sh.h"
+#include "edit.h"
+#include "tty.h"
 
 X_chars edchars;
 
index 0045b69..2663051 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: emacs.c,v 1.58 2015/10/16 23:18:59 mmcc Exp $ */
+/*     $OpenBSD: emacs.c,v 1.59 2015/10/19 02:15:45 mmcc Exp $ */
 
 /*
  *  Emacs-like command line editing and history
 #include "config.h"
 #ifdef EMACS
 
-#include "sh.h"
-#include <sys/stat.h>
 #include <sys/queue.h>
+#include <sys/stat.h>
+
 #include <ctype.h>
 #include <locale.h>
+
+#include "sh.h"
 #include "edit.h"
 
 static Area    aedit;
index 37c42e6..d03ed7a 100644 (file)
@@ -1,14 +1,16 @@
-/*     $OpenBSD: eval.c,v 1.43 2015/09/18 07:28:24 nicm Exp $  */
+/*     $OpenBSD: eval.c,v 1.44 2015/10/19 02:15:45 mmcc Exp $  */
 
 /*
  * Expansion - quoting, separation, substitution, globbing
  */
 
-#include "sh.h"
-#include <pwd.h>
-#include <dirent.h>
 #include <sys/stat.h>
 
+#include <dirent.h>
+#include <pwd.h>
+
+#include "sh.h"
+
 /*
  * string expansion
  *
index 3f933ac..bc8945e 100644 (file)
@@ -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)
 
index effc20d..52e9965 100644 (file)
@@ -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 {
index 6207d26..d43cda9 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: history.c,v 1.47 2015/10/09 19:36:27 tedu Exp $       */
+/*     $OpenBSD: history.c,v 1.48 2015/10/19 02:15:45 mmcc Exp $       */
 
 /*
  * command history
  *             to work on your system
  */
 
-#include "sh.h"
 #include <sys/stat.h>
 
+#include "sh.h"
+
 #ifdef HISTORY
 # include <sys/mman.h>
 
index 736b085..4d22055 100644 (file)
@@ -1,12 +1,14 @@
-/*     $OpenBSD: io.c,v 1.30 2015/09/22 21:50:40 millert Exp $ */
+/*     $OpenBSD: io.c,v 1.31 2015/10/19 02:15:45 mmcc Exp $    */
 
 /*
  * shell buffered IO and formatted output
  */
 
+#include <sys/stat.h>
+
 #include <ctype.h>
+
 #include "sh.h"
-#include <sys/stat.h>
 
 static int initio_done;
 
index 76664b7..15900b5 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: jobs.c,v 1.47 2015/09/17 21:39:54 nicm Exp $  */
+/*     $OpenBSD: jobs.c,v 1.48 2015/10/19 02:15:45 mmcc Exp $  */
 
 /*
  * Process and job control
  *
  */
 
-#include "sh.h"
+#include <sys/resource.h>
 #include <sys/stat.h>
-#include <sys/wait.h>
 #include <sys/time.h>
-#include <sys/resource.h>
+#include <sys/wait.h>
+
+#include "sh.h"
 #include "tty.h"
 
 /* Order important! */
index 568aec9..e08eae1 100644 (file)
@@ -1,13 +1,13 @@
-/*     $OpenBSD: lex.c,v 1.59 2015/10/10 22:09:23 nicm Exp $   */
+/*     $OpenBSD: lex.c,v 1.60 2015/10/19 02:15:45 mmcc Exp $   */
 
 /*
  * lexical analysis and source input
  */
 
-#include "sh.h"
-#include <libgen.h>
 #include <ctype.h>
+#include <libgen.h>
 
+#include "sh.h"
 
 /*
  * states while lexing word
index bfd6f90..7c592db 100644 (file)
@@ -1,16 +1,17 @@
-/*     $OpenBSD: mail.c,v 1.20 2015/10/09 19:36:27 tedu Exp $  */
+/*     $OpenBSD: mail.c,v 1.21 2015/10/19 02:15:45 mmcc Exp $  */
 
 /*
  * Mailbox checking code by Robert J. Gibson, adapted for PD ksh by
  * John R. MacMillan
  */
 
-#include "config.h"
-
-#include "sh.h"
 #include <sys/stat.h>
+
 #include <time.h>
 
+#include "config.h"
+#include "sh.h"
+
 #define MBMESSAGE      "you have mail in $_"
 
 typedef struct mbox {
index e85d38f..707f2ee 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: main.c,v 1.66 2015/10/18 18:05:35 mmcc Exp $  */
+/*     $OpenBSD: main.c,v 1.67 2015/10/19 02:15:45 mmcc Exp $  */
 
 /*
  * startup, main loop, environments and error handling
@@ -6,10 +6,12 @@
 
 #define        EXTERN                          /* define EXTERNs in sh.h */
 
-#include "sh.h"
 #include <sys/stat.h>
-#include <pwd.h>
+
 #include <paths.h>
+#include <pwd.h>
+
+#include "sh.h"
 
 extern char **environ;
 
index 5e84727..a9eecde 100644 (file)
@@ -1,11 +1,12 @@
-/*     $OpenBSD: misc.c,v 1.46 2015/09/22 21:50:40 millert Exp $       */
+/*     $OpenBSD: misc.c,v 1.47 2015/10/19 02:15:45 mmcc Exp $  */
 
 /*
  * Miscellaneous functions
  */
 
-#include "sh.h"
 #include <ctype.h>
+
+#include "sh.h"
 #include "charclass.h"
 
 short ctypes [UCHAR_MAX+1];    /* type bits for unsigned char */
index 2e336a7..b802c44 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: mknod.c,v 1.2 2009/10/27 23:59:21 deraadt Exp $       */
+/*     $OpenBSD: mknod.c,v 1.3 2015/10/19 02:15:45 mmcc Exp $  */
 /*     $NetBSD: mknod.c,v 1.8 1995/08/11 00:08:18 jtc Exp $    */
 
 /*
@@ -35,6 +35,7 @@
 
 #include <sys/types.h>
 #include <sys/stat.h>
+
 #include <errno.h>
 
 #include "sh.h"
index f48f8d4..e7afe0c 100644 (file)
@@ -1,8 +1,9 @@
-/*     $OpenBSD: path.c,v 1.15 2015/10/06 21:35:16 nicm Exp $  */
+/*     $OpenBSD: path.c,v 1.16 2015/10/19 02:15:45 mmcc Exp $  */
 
-#include "sh.h"
 #include <sys/stat.h>
 
+#include "sh.h"
+
 /*
  *     Contains a routine to search a : separated list of
  *     paths (a la CDPATH) and make appropriate file names.
index a0b98ba..f7d2285 100644 (file)
@@ -1,12 +1,12 @@
-/*     $OpenBSD: shf.c,v 1.22 2015/09/18 07:28:24 nicm Exp $   */
+/*     $OpenBSD: shf.c,v 1.23 2015/10/19 02:15:45 mmcc Exp $   */
 
 /*
  *  Shell file I/O routines
  */
 
-#include "sh.h"
 #include <sys/stat.h>
 
+#include "sh.h"
 
 /* flags to shf_emptybuf() */
 #define EB_READSW      0x01    /* about to switch to reading */
index f0ee491..36853af 100644 (file)
@@ -1,9 +1,11 @@
-/*     $OpenBSD: var.c,v 1.50 2015/09/22 21:50:40 millert Exp $        */
+/*     $OpenBSD: var.c,v 1.51 2015/10/19 02:15:45 mmcc Exp $   */
 
-#include "sh.h"
-#include <time.h>
 #include <sys/stat.h>
+
 #include <ctype.h>
+#include <time.h>
+
+#include "sh.h"
 
 /*
  * Variables
index 8c6c98e..fa62e2d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: vi.c,v 1.34 2015/10/15 19:36:50 mmcc Exp $    */
+/*     $OpenBSD: vi.c,v 1.35 2015/10/19 02:15:45 mmcc Exp $    */
 
 /*
  *     vi command editing
@@ -9,9 +9,11 @@
 #include "config.h"
 #ifdef VI
 
-#include "sh.h"
-#include <ctype.h>
 #include <sys/stat.h>          /* completion */
+
+#include <ctype.h>
+
+#include "sh.h"
 #include "edit.h"
 
 #define CMDLEN         2048