Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1 | /* Module definition and import interface */ |
2 | |||||
3 | void init_modules PROTO(()); | ||||
4 | void close_modules PROTO(()); | ||||
5 | object *new_module PROTO((char *name)); | ||||
6 | void define_module PROTO((struct _context *ctx, char *name)); | ||||
7 | object *import_module PROTO((struct _context *ctx, char *name)); |