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

WINDOW * subwin(WINDOW * orig, int nlines, int ncols, int begin_y, int begin_x)
{
	return NULL;
}

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