shithub: riscv

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