hbase

heirloom base
git clone git://git.2f30.org/hbase
Log | Files | Refs | README

bprint.c (176B)


      1 #include	"lib9.h"
      2 #include	<bio.h>
      3 
      4 int
      5 Bprint(Biobuf *bp, char *fmt, ...)
      6 {
      7 	int n;
      8 	va_list arg;
      9 
     10 	va_start(arg, fmt);
     11 	n = Bvprint(bp, fmt, arg);
     12 	va_end(arg);
     13 	return n;
     14 }