Maybe this is better.

pull/2270/head
Nicholas Marriott 2020-05-22 17:27:07 +01:00
parent 1fdacba111
commit a48cc458a6
3 changed files with 11 additions and 7 deletions

View File

@ -25,15 +25,8 @@
#include <limits.h>
#include <stdio.h>
#include <termios.h>
#include <term.h>
#include <wchar.h>
#if defined(HAVE_CURSES_H)
#include <curses.h>
#elif defined(HAVE_NCURSES_H)
#include <ncurses.h>
#endif
#ifdef HAVE_UTF8PROC
#include <utf8proc.h>
#endif

4
proc.c
View File

@ -27,6 +27,10 @@
#include <string.h>
#include <unistd.h>
#if defined(HAVE_NCURSES_H)
#include <ncurses.h>
#endif
#include "tmux.h"
struct tmuxproc {

View File

@ -21,6 +21,13 @@
#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 "tmux.h"