md_readchar

This commit is contained in:
jl777
2019-02-17 01:59:19 -11:00
parent 43edfb4ae2
commit db50762b5c
3 changed files with 14 additions and 1 deletions

View File

@@ -17,6 +17,7 @@
static int32_t endwinflag;
WINDOW *stdscr;
int32_t ESCDELAY;
WINDOW *newwin(int32_t nlines,int32_t ncols,int32_t begin_y,int32_t begin_x)
{
@@ -413,3 +414,9 @@ int32_t getch(void)
return(0);
}
int32_t md_readchar(void)
{
fprintf(stderr,"unexpected and unsupported call to md_readchar\n");
return(0);
}