wmii/lib/libbio/bprint.c

15 lines
183 B
C
Raw Normal View History

#include "plan9.h"
#include <bio.h>
int
2007-07-17 00:52:35 +04:00
Bprint(Biobuf *bp, const char *fmt, ...)
{
int n;
va_list arg;
va_start(arg, fmt);
n = Bvprint(bp, fmt, arg);
va_end(arg);
return n;
}