summaryrefslogtreecommitdiff
path: root/src/curses/mvwscanw.c
blob: a5ae33b2ef0afc7d991f4f1793323501c95de2d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <curses.h>
#include <stdarg.h>

int mvwscanw(WINDOW * win, int y, int x, const char * fmt, ...)
{
	return ERR;
}

/*
XOPEN(4)
LINK(curses)
*/