shithub: riscv

ref: df89d898f0c643d846002a3902da63fd8862119e
dir: /sys/src/libc/fmt/fmtlock.c/

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

static Lock fmtl;

void
_fmtlock(void)
{
	lock(&fmtl);
}

void
_fmtunlock(void)
{
	unlock(&fmtl);
}