From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Saffi Hartal" To: Subject: Init modules Date: Wed, 26 Aug 1998 02:50:00 -0000 Message-id: <006c01bdd0df$6260aff0$6cdfcbc7@shartal.ariadnaweb.com> X-SW-Source: 1998/msg00031.html I sometimes use that way to init my modules.  if I want to init the arrays and variables i use (i don't always create a class which supply the interface cause the people around me use C routines instead of C++ ), what do you think about it.   static int init_module(void) {     /* code to init the module */     return(0); }   static int init_var=init_module();                   Saffi Â