sm_proc.c 493 B

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