From 6f4d00ee45693290fae042b27536b54f77b96acd Mon Sep 17 00:00:00 2001 From: David du Colombier <0intro@gmail.com> Date: Mon, 23 Sep 2013 23:00:39 +0200 Subject: fossil: import from plan 9 R=rsc https://codereview.appspot.com/7988047 --- src/cmd/fossil/nobwatch.c | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 src/cmd/fossil/nobwatch.c (limited to 'src/cmd/fossil/nobwatch.c') 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); +} + -- cgit v1.2.3