Add ncurses 6.4

This commit is contained in:
Justine Tunney 2023-12-10 07:28:01 -08:00
parent 6ee5580adc
commit 0ed7309fdb
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
3071 changed files with 69379 additions and 1 deletions

34
third_party/ncurses/fallback.c vendored Normal file
View file

@ -0,0 +1,34 @@
/* 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
/*
* This entrypoint is used by tack 1.07
*/
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