shithub: tlsclient

ref: fa83d0a67d9c796e60a13c5a7ce8e9d4d9e97871
dir: /libc/fmtlock.c/

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

static Lock fmtl;

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

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