2018-08-09 18:06:22 +02:00
|
|
|
#if defined(CURSES_HAVE_NCURSES_H)
|
|
|
|
# include <ncurses.h>
|
|
|
|
#elif defined(CURSES_HAVE_NCURSES_NCURSES_H)
|
|
|
|
# include <ncurses/ncurses.h>
|
|
|
|
#elif defined(CURSES_HAVE_NCURSES_CURSES_H)
|
|
|
|
# include <ncurses/curses.h>
|
|
|
|
#else
|
|
|
|
# include <curses.h>
|
|
|
|
#endif
|
|
|
|
|
2024-04-14 22:45:38 +02:00
|
|
|
int main(void)
|
2018-08-09 18:06:22 +02:00
|
|
|
{
|
|
|
|
curses_version();
|
|
|
|
return 0;
|
|
|
|
}
|