		** add the size (in K) of a module

		** standalone modules:
		
#ifdef SL_MODULE_STANDALONE
#include <spar/sl_init.h>
#include <spar/sl_writer.h>

int
main (void)
{
  sl_module *module;
  module =  sl_get_module (a_module_struct_name);

  sl_init ();

  module->main ();

  return sl_de_init ();
}
#endif /* SL_MODULE_STANDALONE */

