sm_mbuf.c 302 B

1234567891011121314151617181920
  1. #include <stdlib.h>
  2. #include "sylimits.h"
  3. #include "data.h"
  4. #include "error.h"
  5. void
  6. init_mbuf(struct stream *st)
  7. {
  8. fatal("mbuf module not available");
  9. }
  10. int
  11. get_mbuf(char *symon_buf, int maxlen, struct stream *st)
  12. {
  13. fatal("mbuf module not available");
  14. /* NOT REACHED */
  15. return 0;
  16. }