blob: ea7194b46d1f996d14c2cacfee3452b92405521a [file] [log] [blame]
/* This file was generated by ./tinfo/MKfallback.sh */
/*
* DO NOT EDIT THIS FILE BY HAND!
*/
#include <curses.priv.h>
NCURSES_EXPORT(const TERMTYPE2 *)
_nc_fallback2 (const char *name GCC_UNUSED)
{
/* the fallback list is empty */
return((const TERMTYPE2 *)0);
}
#if NCURSES_EXT_NUMBERS
#undef _nc_fallback
NCURSES_EXPORT(const TERMTYPE *)
_nc_fallback (const char *name)
{
const TERMTYPE2 *tp = _nc_fallback2(name);
const TERMTYPE *result = 0;
if (tp != 0) {
static TERMTYPE temp;
_nc_export_termtype2(&temp, tp);
result = &temp;
}
return result;
}
#endif