sm_pf.c 411 B

1234567891011121314151617181920212223242526272829
  1. #include <stdlib.h>
  2. #include "sylimits.h"
  3. #include "data.h"
  4. #include "error.h"
  5. void
  6. privinit_pf()
  7. {
  8. fatal("pf module not available");
  9. }
  10. void
  11. init_pf(struct stream *st)
  12. {
  13. fatal("pf module not available");
  14. }
  15. void
  16. gets_pf()
  17. {
  18. fatal("pf module not available");
  19. }
  20. int
  21. get_pf(char *symon_buf, int maxlen, struct stream *st)
  22. {
  23. fatal("pf module not available");
  24. /* NOT REACHED */
  25. return 0;
  26. }