sm_io.c 411 B

1234567891011121314151617181920212223242526
  1. /* $Id: sm_io.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. init_io(struct stream *st)
  8. {
  9. fatal("io module not available");
  10. }
  11. void
  12. gets_io()
  13. {
  14. fatal("io module not available");
  15. }
  16. int
  17. get_io(char *symon_buf, int maxlen, struct stream *st)
  18. {
  19. fatal("io module not available");
  20. /* NOT REACHED */
  21. return 0;
  22. }