]> git.lizzy.rs Git - plan9front.git/blob - sys/src/9/boot/printstub.c
49dc0f86869b0d1c79f1a627a15e5fc20e298c1b
[plan9front.git] / sys / src / 9 / boot / printstub.c
1 #include <u.h>
2 #include <libc.h>
3
4 static Lock fmtl;
5
6 void
7 _fmtlock(void)
8 {
9         lock(&fmtl);
10 }
11
12 void
13 _fmtunlock(void)
14 {
15         unlock(&fmtl);
16 }
17
18 int
19 _efgfmt(Fmt*)
20 {
21         return -1;
22 }