shithub: purgatorio

ref: 15e065df12bf7ad79000d150cefa5038ee7416b3
dir: purgatorio/libbio/bprint.c

View raw version
#include	"lib9.h"
#include	<bio.h>

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

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