shithub: riscv

ref: 15b903c4e187b82d6dd01b8284b244945522c06d
dir: /sys/src/libc/fmt/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));
}