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

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

CURSES_FUNCTION2(int, hline, chtype, int)

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