Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – planix.SVN – Blame – /os/branches/feature_tlsv12/sys/src/9/port/print.c – Rev 2

Subversion Repositories planix.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 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
10
_fmtlock(void)
11
{
12
	lock(&fmtl);
13
}
14
 
15
void
16
_fmtunlock(void)
17
{
18
	unlock(&fmtl);
19
}
20
 
21
int
22
_efgfmt(Fmt*)
23
{
24
	return -1;
25
}