code: drawterm

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