aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-12-03 14:33:27 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-12-03 14:33:27 +0000
commit1f7ac1e0cbf9e137315eb487022ca21a43ac6586 (patch)
tree14c4186a891d32cc8850ec76ea46e7ba09ad72f1
parent8fffdd28fbbde3fca83c79341c122b4dd6ca0d03 (diff)
downloadrtmux-1f7ac1e0cbf9e137315eb487022ca21a43ac6586.tar.gz
rtmux-1f7ac1e0cbf9e137315eb487022ca21a43ac6586.tar.bz2
rtmux-1f7ac1e0cbf9e137315eb487022ca21a43ac6586.zip
Solaris requires this header ordering.
-rw-r--r--tty-term.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/tty-term.c b/tty-term.c
index 9305c5d5..a8cd5fd1 100644
--- a/tty-term.c
+++ b/tty-term.c
@@ -1,4 +1,4 @@
-/* $Id: tty-term.c,v 1.38 2009-11-28 14:42:21 tcunha Exp $ */
+/* $Id: tty-term.c,v 1.39 2009-12-03 14:33:27 nicm Exp $ */
/*
* Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -18,16 +18,15 @@
#include <sys/types.h>
-#include <fnmatch.h>
-#include <stdlib.h>
-#include <string.h>
-#include <term.h>
-
#ifdef HAVE_BROKEN_CURSES_H
#include <ncurses.h>
#else
#include <curses.h>
#endif
+#include <fnmatch.h>
+#include <stdlib.h>
+#include <string.h>
+#include <term.h>
#include "tmux.h"