summaryrefslogtreecommitdiff
path: root/sys/src/ape/lib/fmt/werrstr.c
blob: 05222f72eadc2e050757bedcc944dbe88987faf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdarg.h>
#include <errno.h>
#include "fmt.h"

extern char _plan9err[128];

void
werrstr(const char *fmt, ...)
{
	va_list arg;

	va_start(arg, fmt);
	snprint(_plan9err, sizeof _plan9err, fmt, arg);
	va_end(arg);
	errno = EPLAN9;
}