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

int mvcur(int oldrow, int oldcol, int newrow, int newcol)
{
	return ERR;
}

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