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

int copywin(const WINDOW * srcwin, WINDOW * dstwin, int sminrow, int smincol, int dminrow, int dmincol, int dmaxrow, int dmaxcol, int overlay)
{
	return ERR;
}

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