diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-12-03 14:33:27 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-12-03 14:33:27 +0000 |
commit | 1f7ac1e0cbf9e137315eb487022ca21a43ac6586 (patch) | |
tree | 14c4186a891d32cc8850ec76ea46e7ba09ad72f1 | |
parent | 8fffdd28fbbde3fca83c79341c122b4dd6ca0d03 (diff) | |
download | rtmux-1f7ac1e0cbf9e137315eb487022ca21a43ac6586.tar.gz rtmux-1f7ac1e0cbf9e137315eb487022ca21a43ac6586.tar.bz2 rtmux-1f7ac1e0cbf9e137315eb487022ca21a43ac6586.zip |
Solaris requires this header ordering.
-rw-r--r-- | tty-term.c | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -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" |