If NO_DYNAMIC_LINK is defined, load_dynamic_module() will always fail.

This commit is contained in:
Guido van Rossum 1996-07-31 17:55:19 +00:00
parent 5e41644ddd
commit 3823420ca4
1 changed files with 4 additions and 0 deletions

View File

@ -214,6 +214,10 @@ struct filedescr import_filetab[] = {
{0, 0} {0, 0}
}; };
#ifdef NO_DYNAMIC_LINK
#undef DYNAMIC_LINK
#endif
object * object *
load_dynamic_module(name, pathname, fp) load_dynamic_module(name, pathname, fp)
char *name; char *name;