From 1f7ac1e0cbf9e137315eb487022ca21a43ac6586 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 3 Dec 2009 14:33:27 +0000 Subject: [PATCH] Solaris requires this header ordering. --- tty-term.c | 11 +++++------ 1 file 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 @@ -18,16 +18,15 @@ #include -#include -#include -#include -#include - #ifdef HAVE_BROKEN_CURSES_H #include #else #include #endif +#include +#include +#include +#include #include "tmux.h"