1
0
mirror of https://github.com/tmux/tmux.git synced 2025-04-29 01:08:49 +00:00

Solaris requires this header ordering.

This commit is contained in:
Nicholas Marriott 2009-12-03 14:33:27 +00:00
parent 8fffdd28fb
commit 1f7ac1e0cb

View File

@ -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> * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
@ -18,16 +18,15 @@
#include <sys/types.h> #include <sys/types.h>
#include <fnmatch.h>
#include <stdlib.h>
#include <string.h>
#include <term.h>
#ifdef HAVE_BROKEN_CURSES_H #ifdef HAVE_BROKEN_CURSES_H
#include <ncurses.h> #include <ncurses.h>
#else #else
#include <curses.h> #include <curses.h>
#endif #endif
#include <fnmatch.h>
#include <stdlib.h>
#include <string.h>
#include <term.h>
#include "tmux.h" #include "tmux.h"