shithub: riscv

ref: 24544b80f54a47862ae90ab915b2e4e16c968059
dir: /sys/src/libbio/bprint.c/

View raw version
#include	<u.h>
#include	<libc.h>
#include	<bio.h>

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

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