00001 /* 00002 This file exists because the Intel C++ 6.0 Compiler 00003 for Linux has a bug whereby C++ code that includes 00004 <iostream> and calls a C function named "init" 00005 crashes horribly. 00006 00007 Hence we have to call "init" from here, which is C 00008 and includes no headers. 00009 00010 Orion Sky Lawlor, olawlor@acm.org, 7/26/2002 00011 */ 00012 void init(void); 00013 void fem_impl_call_init(void) { 00014 init(); 00015 }