plan9port/src/cmd/fossil/nobwatch.c
2013-09-26 20:12:45 +02:00

41 lines
341 B
C

#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);
}