sm_load.c 362 B

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