aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/fossil/nobwatch.c
blob: e0e7b17eb2d184733d3a0bb6da9b7f21f3499c22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include "stdinc.h"
#include "dat.h"
#include "fns.h"
#include "error.h"

void
bwatchReset(uchar score[VtScoreSize])
{
	USED(score);
}

void
bwatchInit(void)
{
}

void
bwatchSetBlockSize(uint i)
{
	USED(i);
}

void
bwatchDependency(Block *b)
{
	USED(b);
}

void
bwatchLock(Block *b)
{
	USED(b);
}

void
bwatchUnlock(Block *b)
{
	USED(b);
}