plan9fox/sys/src/9/boot/printstub.c
2011-03-30 19:35:09 +03:00

23 lines
169 B
C

#include <u.h>
#include <libc.h>
static Lock fmtl;
void
_fmtlock(void)
{
lock(&fmtl);
}
void
_fmtunlock(void)
{
unlock(&fmtl);
}
int
_efgfmt(Fmt*)
{
return -1;
}