xref: /plan9/sys/src/cmd/fossil/nobwatch.c (revision 58da3067adcdccaaa043d0bfde28ba83b7ced07d)
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 
40