shithub: drawterm

ref: f59c506336e53a2f55a6e30034e89125a02b6ee4
dir: /libc/errfmt.c/

View raw version
#include <u.h>
#include <libc.h>
#include "fmtdef.h"

int
errfmt(Fmt *f)
{
	char buf[ERRMAX];

	rerrstr(buf, sizeof buf);
	return _fmtcpy(f, buf, utflen(buf), strlen(buf));
}