ref: b143811a53bf25824e74b7e6e6c2ee7af8c7a954
dir: /sys/src/ape/lib/fmt/werrstr.c/
#include <stdarg.h>
#include <errno.h>
#include "fmt.h"
extern char *_plan9err;
void
werrstr(const char *fmt, ...)
{
va_list arg;
va_start(arg, fmt);
snprint(_plan9err, 128, fmt, arg);
va_end(arg);
errno = EPLAN9;
}