summaryrefslogtreecommitdiff
path: root/src/curses/vline.c
blob: 0bc756756894dafaa50b16bce6d7ac09b7899180 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <curses.h>
#include "_curses.h"

int wvline(WINDOW * win, chtype ch, int n)
{
	return 0;
}

CURSES_FUNCTION2(int, vline, chtype, int)

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