summaryrefslogtreecommitdiff
path: root/sys/src/ape/lib/9/rerrstr.c
blob: e686ba00c0ccdd2376f2ba079aa22f49cdbd4999 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "libc.h"

void
rerrstr(char *buf, uint nbuf)
{
	char tmp[ERRMAX];

	tmp[0] = 0;
	errstr(tmp, sizeof tmp);
	utfecpy(buf, buf+nbuf, tmp);
	errstr(tmp, sizeof tmp);
}