Versions Compared

Key

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

...

Consequently, returning from main() is equivalent to calling exit(). Many compilers implement this behavior with something analogous to:

Code Block
bgColor#cccccc
void _start() {
  /* ... */
  exit(main(argc,argv));
}

...