ref: e1fc03c875e12e40be5ac70f244ef19ce1fb6339
dir: /sys/src/libc/fmt/errfmt.c/
#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));
}