xref: /plan9/sys/src/libc/9sys/werrstr.c (revision 9a747e4fd48b9f4522c70c07e8f882a15030f964)
1 #include <u.h>
2 #include <libc.h>
3 
4 void
werrstr(char * fmt,...)5 werrstr(char *fmt, ...)
6 {
7 	va_list arg;
8 	char buf[ERRMAX];
9 
10 	va_start(arg, fmt);
11 	vseprint(buf, buf+ERRMAX, fmt, arg);
12 	va_end(arg);
13 	errstr(buf, ERRMAX);
14 }
15