Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bgColor#FFCCCC
int x; /* externally linked */

int main(void) {
   static int x; /* internally linkedunlinked */
   /* use of identifier x results in undefined behavior */
}

...

Code Block
bgColor#ccccff
int external_x; /* externally linked */
int main(void) {
  static int internal_x; /* internally linkedunlinked */
  /* we're good to go */
}

...