On Thu, May 04, 2006 at 10:25:02AM -0700, Markus Mayer wrote: > The static variable 'initialized' is never explicitly set to 0 in the > beginning. The "static" makes it a non auto variable (i.e. it does live in the BSS, not on the stack) - so it is guaranteed to be 0 at startup. Martin