Subversion Repositories planix.SVN

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
#include "stdinc.h"
2
#include "dat.h"
3
#include "fns.h"
4
#include "error.h"
5
 
6
void
7
bwatchReset(uchar score[VtScoreSize])
8
{
9
	USED(score);
10
}
11
 
12
void
13
bwatchInit(void)
14
{
15
}
16
 
17
void
18
bwatchSetBlockSize(uint)
19
{
20
}
21
 
22
void
23
bwatchDependency(Block *b)
24
{
25
	USED(b);
26
}
27
 
28
void
29
bwatchLock(Block *b)
30
{
31
	USED(b);
32
}
33
 
34
void
35
bwatchUnlock(Block *b)
36
{
37
	USED(b);
38
}
39