xref: /inferno-os/lib9/rerrstr.c (revision 37da2899f40661e3e9631e497da8dc59b971cbd0)
1 #include "lib9.h"
2 
3 void
rerrstr(char * buf,uint nbuf)4 rerrstr(char *buf, uint nbuf)
5 {
6 	char tmp[ERRMAX];
7 
8 	tmp[0] = 0;
9 	errstr(tmp, sizeof tmp);
10 	utfecpy(buf, buf+nbuf, tmp);
11 	errstr(tmp, sizeof tmp);
12 }
13