git: 9front

ref: 6e67ce955b1f432f2d1dc85909553e65a511b8b8
dir: /sys/src/ape/lib/fmt/werrstr.c/

View raw version
#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;
}