sm_mem.c 356 B

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