nobwatch.c 329 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #include "stdinc.h"
  2. #include "dat.h"
  3. #include "fns.h"
  4. #include "error.h"
  5. void
  6. bwatchReset(uchar score[VtScoreSize])
  7. {
  8. USED(score);
  9. }
  10. void
  11. bwatchInit(void)
  12. {
  13. }
  14. void
  15. bwatchSetBlockSize(uint)
  16. {
  17. }
  18. void
  19. bwatchDependency(Block *b)
  20. {
  21. USED(b);
  22. }
  23. void
  24. bwatchLock(Block *b)
  25. {
  26. USED(b);
  27. }
  28. void
  29. bwatchUnlock(Block *b)
  30. {
  31. USED(b);
  32. }