Browse Source

fix typo in a comment in __libc_start_main

master
Rich Felker 12 years ago
parent
commit
285f969db6
  1. 2
      src/env/__libc_start_main.c

2
src/env/__libc_start_main.c

@ -72,7 +72,7 @@ int __libc_start_main(int (*main)(int,char **,char **), int argc, char **argv)
(*(void (**)())a)();
#endif
/* Pass control to to application */
/* Pass control to the application */
exit(main(argc, argv, envp));
return 0;
}

Loading…
Cancel
Save