plan9port/src/libbio/bprint.c

15 lines
176 B
C
Raw Normal View History

2003-09-30 17:47:41 +00:00
#include "lib9.h"
#include <bio.h>
int
Bprint(Biobuf *bp, char *fmt, ...)
{
int n;
2004-12-28 19:18:19 +00:00
va_list arg;
2003-09-30 17:47:41 +00:00
2004-12-28 19:18:19 +00:00
va_start(arg, fmt);
n = Bvprint(bp, fmt, arg);
va_end(arg);
2003-09-30 17:47:41 +00:00
return n;
}