Listing 2

#ifdef MAIN
  #define Global
  #define INIT_GLOBAL
#else
  #define Global extern
#endif

Global int i
#ifdef INIT_GLOBAL
      = 5
#endif
;