git: 9front

ref: 4b6b12cd48e0cb1adb980546faaf1a343f21c33c
dir: /sys/src/cmd/unix/drawterm/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);
}