summaryrefslogtreecommitdiffstats
path: root/Include/modsupport.h
blob: ee648a655bd4a16e17f7d48e989a2169e9f8acc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* 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 *));
extern int err_badargs PROTO((void));
extern object *err_nomem PROTO((void));