1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-23 20:05:32 +02:00

* modules.c, modules.h (scm_resolve_module): New function.

This commit is contained in:
Mikael Djurfeldt 1998-11-26 17:59:15 +00:00
parent 1f60d9d237
commit 90184345a0
2 changed files with 11 additions and 0 deletions

View file

@ -48,11 +48,13 @@
extern SCM scm_the_root_module (void);
extern SCM scm_selected_module (void);
extern SCM scm_select_module (SCM module);
extern SCM scm_make_module (SCM name);
extern SCM scm_ensure_user_module (SCM name);
extern SCM scm_module_lookup_closure (SCM module);
extern SCM scm_resolve_module (SCM name);
extern SCM scm_load_scheme_module (SCM name);
extern void scm_init_modules (void);
extern void scm_post_boot_init_modules (void);