Moved dir $(srcdir)/syntax into $(srcdir)/misc/syntax
[midnight-commander.git] / src / tty / tty-ncurses.h
blob6363a6941d7ba30b576eee6dd7bf6244497610e8
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_NCURSESW_CURSES_H
9 # include <ncursesw/curses.h>
10 # elif HAVE_NCURSES_H
11 # include <ncurses.h>
12 # else
13 # include <curses.h>
14 # endif
15 #endif /* USE_NCURSES */
17 #ifdef USE_NCURSESW
18 # include <ncursesw/curses.h>
19 #endif /* USE_NCURSESW */
21 #endif /* MC_TTY_NCURSES_H */