summaryrefslogtreecommitdiff
path: root/term/putp.c
blob: 9c2b47734d48acb76f0836182666830c7df3a002 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <term.h>
#include "../curses/_curses.h"

int putp(const char * str)
{
	return tputs(str, 1, putchar);
}

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