sm_mem.c 418 B

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