sm_sensor.c 444 B

123456789101112131415161718192021222324252627
  1. /* $Id: sm_sensor.c,v 1.2 2005/10/18 19:58:12 dijkstra Exp $ */
  2. #include <stdlib.h>
  3. #include "sylimits.h"
  4. #include "data.h"
  5. #include "error.h"
  6. void
  7. privinit_sensor()
  8. {
  9. fatal("sensor module not available");
  10. }
  11. void
  12. init_sensor(struct stream *st)
  13. {
  14. fatal("sensor module not available");
  15. }
  16. int
  17. get_sensor(char *symon_buf, int maxlen, struct stream *st)
  18. {
  19. fatal("sensor module not available");
  20. /* NOT REACHED */
  21. return 0;
  22. }