summaryrefslogtreecommitdiff
path: root/src/term/tgetent.c
blob: ab9a677fae4af878bf713af367dd2f54d8049243 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <term.h>
#include "curses.h"

int tgetent(char * bp, const char * name)
{
	(void)bp;
	/* ??? */
	return ERR;
}

/*
XOPEN(400, 700)
LINK(curses)
*/