sm_proc.c 430 B

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