summaryrefslogtreecommitdiff
path: root/src/curses/mvwscanw.c
blob: c6ed53a4db50353b7fab3a53dfcb0d6e72c2144b (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)
*/