Load a binary module.
This function loads a module written in C or some other language
into Pike. The module is initialized and any programs or constants
defined will immediately be available.
When a module is loaded the C function pike_module_init() will
be called to initialize it. When Pike exits pike_module_exit()
will be called. These two functions must be available in the module.