blob: d406bf60d5cfd503e80836e73034ecf908b92d02 (
plain)
1
2
3
4
5
6
7
8
9
|
/* Module support interface */
struct methodlist {
char *ml_name;
method ml_meth;
};
extern object *findmethod PROTO((struct methodlist *, object *, char *));
extern object *initmodule PROTO((char *, struct methodlist *));
|