mirror of
https://github.com/0intro/wmii
synced 2024-11-25 23:30:24 +03:00
15 lines
177 B
C
15 lines
177 B
C
#include "plan9.h"
|
|
#include <bio.h>
|
|
|
|
int
|
|
Bprint(Biobuf *bp, char *fmt, ...)
|
|
{
|
|
int n;
|
|
va_list arg;
|
|
|
|
va_start(arg, fmt);
|
|
n = Bvprint(bp, fmt, arg);
|
|
va_end(arg);
|
|
return n;
|
|
}
|