diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-22 17:34:30 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-22 17:34:30 +0100 |
commit | 2ac6cc2633cf61211b31462f372e16f15d9bf2d6 (patch) | |
tree | 1b42405b026095e6e06d98042dc7532ec4f63003 | |
parent | a48cc458a60310480a8ba02da14fbed6f88399f4 (diff) | |
download | rtmux-2ac6cc2633cf61211b31462f372e16f15d9bf2d6.tar.gz rtmux-2ac6cc2633cf61211b31462f372e16f15d9bf2d6.tar.bz2 rtmux-2ac6cc2633cf61211b31462f372e16f15d9bf2d6.zip |
Put headers back how they were.
-rw-r--r-- | tty-term.c | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -18,16 +18,15 @@ #include <sys/types.h> -#include <fnmatch.h> -#include <stdlib.h> -#include <string.h> -#include <term.h> - #if defined(HAVE_CURSES_H) #include <curses.h> #elif defined(HAVE_NCURSES_H) #include <ncurses.h> #endif +#include <fnmatch.h> +#include <stdlib.h> +#include <string.h> +#include <term.h> #include "tmux.h" |