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

int ins_wstr(WINDOW * win, const wchar_t * wstr)
{
	return ERR;
}

CURSES_FUNCTION(int, ins_wstr, const wchar_t *)

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