aboutsummaryrefslogtreecommitdiff
path: root/src/libbio/bprint.c
blob: 8951512f77733332fdddfa883f5847269d9a15ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include	"lib9.h"
#include	<bio.h>

int
Bprint(Biobuf *bp, char *fmt, ...)
{
	int n;
	va_list arg;

	va_start(arg, fmt);
	n = Bvprint(bp, fmt, arg);
	va_end(arg);
	return n;
}