00001 00002 #include <basix/system.hpp> 00003 #include <basix/glue.hpp> 00004 00005 namespace mmx { 00006 extern void glue_bad (); 00007 00008 void 00009 glue_mblad () { 00010 static bool done = false; 00011 if (done) return; 00012 done = true; 00013 register_glue (string ("glue_bad"), (& (glue_bad))); 00014 register_glue (string ("glue_mblad"), (& (glue_mblad))); 00015 dl_link ("multimix"); 00016 glue_bad (); 00017 } 00018 } 00019 00020 void (*define_mblad) () = mmx::glue_mblad;