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