aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/fossil/nobwatch.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/fossil/nobwatch.c')
-rw-r--r--src/cmd/fossil/nobwatch.c39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/cmd/fossil/nobwatch.c b/src/cmd/fossil/nobwatch.c
new file mode 100644
index 00000000..698e86f4
--- /dev/null
+++ b/src/cmd/fossil/nobwatch.c
@@ -0,0 +1,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)
+{
+}
+
+void
+bwatchDependency(Block *b)
+{
+ USED(b);
+}
+
+void
+bwatchLock(Block *b)
+{
+ USED(b);
+}
+
+void
+bwatchUnlock(Block *b)
+{
+ USED(b);
+}
+