You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
509 B
24 lines
509 B
#ifndef HEADER_ProvideTerm |
|
#define HEADER_ProvideTerm |
|
/* |
|
htop - ProvideTerm.h |
|
(C) 2023 htop dev team |
|
Released under the GNU GPLv2+, see the COPYING file |
|
in the source distribution for its full text. |
|
*/ |
|
|
|
#include "config.h" // IWYU pragma: keep |
|
|
|
// IWYU pragma: begin_exports |
|
|
|
#if defined(HAVE_NCURSESW_TERM_H) |
|
#include <ncursesw/term.h> |
|
#elif defined(HAVE_NCURSES_TERM_H) |
|
#include <ncurses/term.h> |
|
#elif defined(HAVE_TERM_H) |
|
#include <term.h> |
|
#endif |
|
|
|
// IWYU pragma: end_exports |
|
|
|
#endif // HEADER_ProvideTerm
|
|
|