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

WINDOW * newpad(int nlines, int ncols)
{
	return NULL;
}

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