mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
14 lines
181 B
C
14 lines
181 B
C
|
#include <lib9.h>
|
||
|
|
||
|
void
|
||
|
werrstr(char *fmt, ...)
|
||
|
{
|
||
|
va_list arg;
|
||
|
char buf[ERRMAX];
|
||
|
|
||
|
va_start(arg, fmt);
|
||
|
vseprint(buf, buf+ERRMAX, fmt, arg);
|
||
|
va_end(arg);
|
||
|
errstr(buf, ERRMAX);
|
||
|
}
|