sm_debug.c 305 B

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