mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
13 lines
181 B
C
13 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);
|
|
}
|