plan9port/src/lib9/fmtlock2.c

17 lines
148 B
C
Raw Normal View History

2004-12-26 23:17:18 +00:00
#include <u.h>
#include <libc.h>
static QLock fmtlock;
void
__fmtlock(void)
{
qlock(&fmtlock);
}
void
__fmtunlock(void)
{
qunlock(&fmtlock);
}