array.h can be local to window-choose.c now.
authornicm <nicm@openbsd.org>
Thu, 7 May 2015 08:08:54 +0000 (08:08 +0000)
committernicm <nicm@openbsd.org>
Thu, 7 May 2015 08:08:54 +0000 (08:08 +0000)
usr.bin/tmux/tmux.h
usr.bin/tmux/window-choose.c

index 6351b9c..798707e 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: tmux.h,v 1.505 2015/05/06 23:56:46 nicm Exp $ */
+/* $OpenBSD: tmux.h,v 1.506 2015/05/07 08:08:54 nicm Exp $ */
 
 /*
  * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -35,8 +35,6 @@
 #include <stdio.h>
 #include <termios.h>
 
-#include "array.h"
-
 extern char    *__progname;
 extern char   **environ;
 
index f4c2e82..1b29762 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: window-choose.c,v 1.62 2015/05/04 13:04:10 nicm Exp $ */
+/* $OpenBSD: window-choose.c,v 1.63 2015/05/07 08:08:54 nicm Exp $ */
 
 /*
  * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -22,6 +22,7 @@
 #include <stdlib.h>
 #include <string.h>
 
+#include "array.h"
 #include "tmux.h"
 
 struct screen *window_choose_init(struct window_pane *);