mirror of
https://github.com/0intro/wmii
synced 2024-11-22 22:02:30 +03:00
15 lines
183 B
C
15 lines
183 B
C
#include "plan9.h"
|
|
#include <bio.h>
|
|
|
|
int
|
|
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;
|
|
}
|