sm_sensor.c 379 B

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