ref: 14b919faf8e69fb8c06bb397b5a87c2b9f00c3bb
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));
}