patches for AIX with ncurses support
[midnight-commander.git] / lib / tty / tty-ncurses.h
blobc45141a821a3cf783de38805a125ec3ca0d6334b
2 #ifndef MC_TTY_NCURSES_H
3 #define MC_TTY_NCURSES_H
5 #ifdef USE_NCURSES
6 # ifdef HAVE_NCURSES_CURSES_H
7 # include <ncurses/curses.h>
8 # elif HAVE_NCURSES_NCURSES_H
9 # include <ncurses/ncurses.h>
10 # elif HAVE_NCURSESW_CURSES_H
11 # include <ncursesw/curses.h>
12 # elif HAVE_NCURSES_HCURSES_H
13 # include <ncurses.h>
14 # elif HAVE_NCURSES_H
15 # include <ncurses.h>
16 # else
17 # include <curses.h>
18 # endif
19 #endif /* USE_NCURSES */
21 #ifdef USE_NCURSESW
22 # include <ncursesw/curses.h>
23 #endif /* USE_NCURSESW */
25 #endif /* MC_TTY_NCURSES_H */