xref: /plan9/sys/src/9/port/print.c (revision 9a747e4fd48b9f4522c70c07e8f882a15030f964)
1 #include "u.h"
2 #include "../port/lib.h"
3 #include "mem.h"
4 #include "dat.h"
5 #include "fns.h"
6 
7 static Lock fmtl;
8 
9 void
_fmtlock(void)10 _fmtlock(void)
11 {
12 	lock(&fmtl);
13 }
14 
15 void
_fmtunlock(void)16 _fmtunlock(void)
17 {
18 	unlock(&fmtl);
19 }
20 
21 int
_efgfmt(Fmt *)22 _efgfmt(Fmt*)
23 {
24 	return -1;
25 }
26